Created
February 25, 2016 21:57
-
-
Save egamma/65c0e2a832393e3b625a to your computer and use it in GitHub Desktop.
Visual Studio Code default .eslintrc.json
This file contains 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
{ | |
"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
Thanks a lot. Thanks a lot.