You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.1 KiB
Plaintext

{
"env": {
"browser": true,
"node": true
},
"rules": {
"no-console": 0,
"no-reserved-keys": 2,
"block-scoped-var": 2,
"default-case": 2,
"no-div-regex": 2,
"no-else-return": 2,
"no-floating-decimal": 2,
"no-self-compare": 2,
"no-void": 2,
"radix": 2,
"vars-on-top": 2,
"wrap-iife": [2, "inside"],
"no-undefined": 2,
"brace-style": [2, "1tbs", {
"allowSingleLine": false
}],
"comma-style": [2, "last"],
"consistent-this": [2, "that"],
"eol-last": true,
"func-style": [2, "expression"],
"max-nested-callbacks": [2, 3],
"no-nested-ternary": 2,
"no-lonely-if": 2,
"no-multiple-empty-lines": [1, {
"max": 2
}],
"quotes": [1, "single", "avoid-escape"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-in-brackets": [2, "always"],
"space-in-parens": [2, "never"],
"space-unary-word-ops": 2,
"spaced-line-comment": [2, "always"],
"wrap-regex": 2,
"max-len": [2, 120],
"no-bitwise": 2,
"no-plusplus": 2
}
}