Last active
October 25, 2016 13:36
-
-
Save jmrnilsson/e4ec7f43c8fe57a2ff4ef2c2730d1a8b 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
{ | |
"parserOptions": {"ecmaVersion": 5}, | |
"rules": { | |
"eqeqeq": 2, | |
"comma-dangle": 1, | |
"no-console": 0, | |
"no-debugger": 1, | |
"no-extra-semi": 1, | |
"no-extra-parens": 1, | |
"no-irregular-whitespace": 0, | |
"no-undef": 0, | |
"no-unused-vars": 0, | |
"semi": 1, | |
"semi-spacing": 1 | |
} | |
} |
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
globals: | |
define: true | |
require: true | |
rules: | |
indent: | |
- 2 | |
- 2 | |
- SwitchCase: 1 | |
object-curly-spacing: 0 | |
semi: 2 | |
func-names: 0 | |
padded-blocks: 0 | |
no-param-reassign: 0 | |
no-console: 0 | |
space-before-function-paren: | |
- 2 | |
- never | |
no-mixed-operators: 0 | |
parserOptions: | |
ecmaVersion: 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment