-
-
Save rodrigoespinozadev/27bafa0603cd244dedef4df5f72f40e8 to your computer and use it in GitHub Desktop.
Visual Studio Code default .eslintrc.json
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
Show hidden characters
{ | |
"env": { | |
"browser": true, | |
"commonjs": true, | |
"es6": true, | |
"node": true | |
}, | |
"parserOptions": { | |
"ecmaFeatures": { | |
"jsx": true | |
}, | |
"sourceType": "module" | |
}, | |
"rules": { | |
"no-const-assign": 1, | |
"no-extra-semi": 0, | |
"semi": 0, | |
"no-fallthrough": 0, | |
"no-empty": 0, | |
"no-mixed-spaces-and-tabs": 0, | |
"no-redeclare": 0, | |
"no-this-before-super": 1, | |
"no-undef": 1, | |
"no-unreachable": 1, | |
"no-unused-vars": 1, | |
"no-use-before-define": 0, | |
"constructor-super": 1, | |
"curly": 0, | |
"eqeqeq": 0, | |
"func-names": 0, | |
"valid-typeof": 1 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment