2019-05-28 20:19:48 +02:00
|
|
|
{
|
2021-04-12 07:07:00 +02:00
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"env": {
|
2021-03-01 01:19:25 +01:00
|
|
|
"node": true
|
2019-05-28 20:19:48 +02:00
|
|
|
},
|
|
|
|
"parserOptions": {
|
2021-03-01 01:19:25 +01:00
|
|
|
"ecmaVersion": 2020,
|
2019-05-30 07:06:17 +02:00
|
|
|
"sourceType": "module",
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
}
|
2019-05-28 20:19:48 +02:00
|
|
|
},
|
|
|
|
"rules": {
|
2020-07-25 10:22:57 +02:00
|
|
|
"accessor-pairs": "error",
|
|
|
|
"block-spacing": ["error", "never"],
|
2019-05-28 20:19:48 +02:00
|
|
|
"brace-style": ["error", "stroustrup", {"allowSingleLine": true}],
|
|
|
|
"curly": ["error", "multi-line", "consistent"],
|
2020-07-25 10:22:57 +02:00
|
|
|
"dot-location": ["error", "property"],
|
2019-06-19 05:09:49 +02:00
|
|
|
"dot-notation": "error",
|
2020-07-25 10:22:57 +02:00
|
|
|
// "eqeqeq": ["error", "smart"],
|
|
|
|
"func-call-spacing": "error",
|
|
|
|
"handle-callback-err": "error",
|
|
|
|
"key-spacing": "error",
|
|
|
|
"keyword-spacing": "error",
|
2019-05-28 20:19:48 +02:00
|
|
|
"linebreak-style": ["error", "windows"],
|
2020-07-25 10:22:57 +02:00
|
|
|
"new-cap": ["error", {"newIsCap": true}],
|
|
|
|
"no-array-constructor": "error",
|
|
|
|
"no-caller": "error",
|
|
|
|
"no-console": "error",
|
|
|
|
"no-duplicate-imports": "error",
|
|
|
|
"no-else-return": "error",
|
|
|
|
"no-eval": "error",
|
|
|
|
"no-floating-decimal": "error",
|
|
|
|
"no-implied-eval": "error",
|
|
|
|
"no-iterator": "error",
|
|
|
|
"no-label-var": "error",
|
|
|
|
"no-labels": "error",
|
|
|
|
"no-lone-blocks": "error",
|
|
|
|
"no-mixed-spaces-and-tabs": "error",
|
|
|
|
"no-multi-spaces": "error",
|
|
|
|
"no-multi-str": "error",
|
|
|
|
"no-new": "error",
|
|
|
|
"no-new-func": "error",
|
|
|
|
"no-new-object": "error",
|
|
|
|
"no-new-wrappers": "error",
|
|
|
|
"no-octal-escape": "error",
|
|
|
|
"no-path-concat": "error",
|
|
|
|
"no-proto": "error",
|
|
|
|
"no-prototype-builtins": "off",
|
|
|
|
"no-redeclare": ["error", {"builtinGlobals": true}],
|
|
|
|
"no-self-compare": "error",
|
|
|
|
"no-sequences": "error",
|
|
|
|
"no-shadow": ["warn", {"builtinGlobals": false, "hoist": "functions"}],
|
|
|
|
"no-tabs": "error",
|
|
|
|
"no-template-curly-in-string": "error",
|
|
|
|
"no-throw-literal": "error",
|
|
|
|
// "no-trailing-spaces": "error",
|
|
|
|
"no-undef": "error",
|
|
|
|
"no-undef-init": "error",
|
|
|
|
"no-unmodified-loop-condition": "error",
|
|
|
|
"no-unneeded-ternary": "error",
|
|
|
|
"no-useless-call": "error",
|
|
|
|
"no-useless-computed-key": "error",
|
|
|
|
"no-useless-constructor": "error",
|
|
|
|
"no-useless-rename": "error",
|
2019-05-29 05:48:41 +02:00
|
|
|
"no-var": "error",
|
2020-07-25 10:22:57 +02:00
|
|
|
"no-whitespace-before-property": "error",
|
|
|
|
"object-curly-spacing": ["error", "never", {"objectsInObjects": false}],
|
|
|
|
"object-property-newline": ["error", {"allowAllPropertiesOnSameLine": true}],
|
|
|
|
"operator-linebreak": ["error", "none", {"overrides": {"?": "before", ":": "before"}}],
|
2019-05-30 07:06:17 +02:00
|
|
|
"prefer-const": "error",
|
2020-07-25 10:22:57 +02:00
|
|
|
"quote-props": ["error", "consistent-as-needed", {"keywords": true}],
|
|
|
|
"quotes": ["error", "double", {"allowTemplateLiterals": true}],
|
|
|
|
"rest-spread-spacing": "error",
|
|
|
|
"semi": "error",
|
|
|
|
"semi-spacing": "error",
|
|
|
|
"space-before-blocks": "error",
|
|
|
|
"space-in-parens": "error",
|
|
|
|
"space-infix-ops": "error",
|
|
|
|
"space-unary-ops": ["error", {"words": true, "nonwords": false, "overrides": {"typeof": false}}],
|
|
|
|
"spaced-comment": ["error", "always", {"exceptions": ["-", "*"]}],
|
|
|
|
"template-curly-spacing": "error",
|
|
|
|
"wrap-iife": ["error", "inside"],
|
|
|
|
"yield-star-spacing": "error",
|
2021-03-06 09:30:16 +01:00
|
|
|
"yoda": "error"
|
2019-05-28 20:19:48 +02:00
|
|
|
},
|
|
|
|
"globals": {
|
2019-06-19 05:09:49 +02:00
|
|
|
"Proxy": "readonly",
|
|
|
|
"Set": "readonly",
|
|
|
|
"WeakMap": "readonly",
|
2020-10-27 19:42:49 +01:00
|
|
|
"Map": "readonly",
|
2019-06-19 05:09:49 +02:00
|
|
|
"Promise": "readonly",
|
|
|
|
"Reflect": "readonly",
|
|
|
|
"DiscordNative": "readonly",
|
|
|
|
"__non_webpack_require__": "readonly",
|
2021-03-06 09:30:16 +01:00
|
|
|
"Symbol": "readonly"
|
2019-05-28 20:19:48 +02:00
|
|
|
}
|
|
|
|
}
|