18 lines
393 B
Plaintext
18 lines
393 B
Plaintext
{
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"rules": {
|
|
"eqeqeq": ["error", "smart"],
|
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
|
"no-constant-condition": "off",
|
|
"no-redeclare": "warn",
|
|
"no-underscore-dangle": "off",
|
|
"no-use-before-define": ["warn","nofunc"],
|
|
"quotes": ["error", "single"],
|
|
"space-before-blocks": "error",
|
|
"strict": "error"
|
|
}
|
|
}
|