Skip to content

Instantly share code, notes, and snippets.

@rodrigoespinozadev
Forked from egamma/.eslintrc.json
Created April 13, 2018 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodrigoespinozadev/27bafa0603cd244dedef4df5f72f40e8 to your computer and use it in GitHub Desktop.
Save rodrigoespinozadev/27bafa0603cd244dedef4df5f72f40e8 to your computer and use it in GitHub Desktop.
Visual Studio Code default .eslintrc.json
{
"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