24 lines
521 B
JSON
Executable File
24 lines
521 B
JSON
Executable File
{
|
|
"extends": "standard",
|
|
"installedESLint": true,
|
|
"root": true,
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"plugins": [ "html", "standard" ],
|
|
"rules": {
|
|
"indent": ["error", 4, { "SwitchCase": 1 }],
|
|
"quotes": ["error", "single"],
|
|
"semi": ["error", "always"],
|
|
"no-console": ["error"],
|
|
"no-empty": 2,
|
|
"no-eq-null": 2,
|
|
"no-new": 0
|
|
}
|
|
}
|