@underscope/eslint-config
v0.6.0
Published
Underscope's ESLint Config
Downloads
1
Readme
eslint-config-underscope
Underscope ESLint config using Prettier, React and React Native.
How to use
$ yarn add @underscope/eslint-config
.eslintrc:
{
"extends" "@underscope/eslint-config",
"rules" {
...
}
}
Integrating with VSCode
Open the command pallete by pressing CMD + SHIFT + P and type "Open Settings (JSON)", then make sure you have the following config:
{
"[javascript]": {
"editor.formatOnSave": false
},
"editor.formatOnSave": true,
"prettier.disableLanguages": ["js"],
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true
}