Created
February 21, 2021 14:59
-
-
Save decodedmrq/3e5d2f4728faf940978495a6037cc606 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"plugins": [ | |
"react" | |
], | |
"extends": [ | |
"eslint:recommended", | |
"plugin:react/recommended" | |
], | |
"rules": { | |
"indent": [ | |
2, | |
2, | |
{ | |
"SwitchCase": 1 | |
} | |
], | |
"linebreak-style": [ | |
2, | |
"unix" | |
], | |
"quotes": [ | |
2, | |
"single" | |
], | |
"semi": [ | |
2, | |
"always" | |
], | |
"curly": [ | |
2, | |
"all" | |
], | |
"camelcase": [ | |
2, | |
{ | |
"properties": "always" | |
} | |
], | |
"eqeqeq": [ | |
2, | |
"smart" | |
], | |
"one-var-declaration-per-line": [ | |
2, | |
"always" | |
], | |
"new-cap": 2, | |
"no-case-declarations": 0 | |
}, | |
"parserOptions": { | |
"ecmaVersion": 6, | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"env": { | |
"browser": true, | |
"es6": true | |
}, | |
"globals": { | |
"arguments": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment