63 lines
2.1 KiB
JSON
63 lines
2.1 KiB
JSON
|
{
|
||
|
"root":true,
|
||
|
"env": {
|
||
|
"es6": true,
|
||
|
"browser": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"globals": {
|
||
|
"VERSION": true,
|
||
|
"ICONS": true,
|
||
|
"NAME": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"arrow-parens": ["error", "as-needed"],
|
||
|
"brace-style": ["error", "1tbs", {"allowSingleLine": true}],
|
||
|
"comma-dangle": ["error", "never"],
|
||
|
"comma-spacing": "error",
|
||
|
"comma-style": "error",
|
||
|
"eqeqeq": ["error", "smart"],
|
||
|
"eol-last": "error",
|
||
|
"indent": "off",
|
||
|
"indent-legacy": ["error", 4, {"SwitchCase": 1}],
|
||
|
"key-spacing": "error",
|
||
|
"keyword-spacing": "error",
|
||
|
"linebreak-style": ["error", "unix"],
|
||
|
"no-array-constructor": "error",
|
||
|
"no-case-declarations": "warn",
|
||
|
"no-duplicate-imports": "error",
|
||
|
"no-empty": ["error", {"allowEmptyCatch": true}],
|
||
|
"no-extend-native": "error",
|
||
|
"no-lone-blocks": "error",
|
||
|
"no-lonely-if": "error",
|
||
|
"no-multi-spaces": "error",
|
||
|
"no-multiple-empty-lines": ["error", {"max": 2, "maxEOF": 1, "maxBOF": 0}],
|
||
|
"no-template-curly-in-string": "error",
|
||
|
"no-trailing-spaces": "error",
|
||
|
"no-unused-vars": ["error", {"vars": "local", "args": "none"}],
|
||
|
"no-var": "error",
|
||
|
"object-curly-spacing": "error",
|
||
|
"object-shorthand": "error",
|
||
|
"prefer-const": ["error", {"destructuring": "all"}],
|
||
|
"prefer-destructuring": "warn",
|
||
|
"quotes": ["error", "single", {"avoidEscape": true}],
|
||
|
"semi": ["error", "always"],
|
||
|
"sort-imports": ["error", {
|
||
|
"ignoreCase": true,
|
||
|
"ignoreDeclarationSort": true
|
||
|
}],
|
||
|
"space-before-blocks": "error",
|
||
|
"space-before-function-paren": ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}],
|
||
|
"space-in-parens": "error",
|
||
|
"space-infix-ops": "error",
|
||
|
"space-unary-ops": "error",
|
||
|
"spaced-comment": "error",
|
||
|
"template-curly-spacing": "error"
|
||
|
}
|
||
|
}
|