-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.config.js
183 lines (182 loc) · 7.5 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// @ts-ignore
import babelParser from "@babel/eslint-parser"
// @ts-ignore
import globals from "globals"
// @ts-ignore
import stylisticJs from '@stylistic/eslint-plugin-js'
export default [
{
files: [
"**/*.js",
],
ignores: [
"playwright-report/**",
"src/vendor/**",
"dist/cleaner-twitter/vendor/**",
],
languageOptions: {
parser: babelParser,
parserOptions: {
requireConfigFile: false,
babelOptions: {
babelrc: false,
configFile: false,
presets: ["@babel/preset-env"],
plugins: ["@babel/plugin-syntax-import-attributes"],
},
},
globals: {
...globals.browser,
chrome: "readonly",
ace: "readonly",
process: "readonly",
},
},
plugins: {
'@stylistic/js': stylisticJs,
},
rules: {
"prefer-const": "error",
"eqeqeq": ["error", "always"],
"func-style": ["error", "declaration"],
"no-class-assign": "error",
"no-compare-neg-zero": "error",
"no-cond-assign": ["error", "except-parens"],
"no-constant-binary-expression": "error",
"no-constant-condition": ["error", { "checkLoops": "all" }],
"no-constructor-return": "error",
"no-debugger": "error",
"no-dupe-args": "error",
"no-dupe-class-members": "error",
"no-dupe-else-if": "error",
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-duplicate-imports": "error",
"no-empty-pattern": ["error", { "allowObjectPatternsAsParameters": true }],
"no-ex-assign": "error",
"no-func-assign": "error",
"no-import-assign": "error",
"no-inner-declarations": "error",
"no-invalid-regexp": "error",
"no-irregular-whitespace": "error",
"no-loss-of-precision": "error",
"no-misleading-character-class": "error",
// "no-promise-executor-return": "error",
"no-prototype-builtins": "error",
"no-self-assign": "error",
"no-self-compare": "error",
"no-setter-return": "error",
"no-sparse-arrays": "error",
"no-template-curly-in-string": "error",
"no-this-before-super": "error",
"no-undef": "error",
"no-unmodified-loop-condition": "error",
"no-unreachable": "error",
"no-unused-private-class-members": "error",
"no-useless-assignment": "error",
"no-useless-backreference": "error",
"require-atomic-updates": "error",
"use-isnan": "error",
"block-scoped-var": "error",
"camelcase": "error",
"curly": ["error", "multi-line"],
"default-param-last": "error",
"guard-for-in": "error",
"new-cap": "error",
"no-alert": "error",
"no-array-constructor": "error",
"no-console": "error",
"no-delete-var": "error",
"no-else-return": "error",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-empty-function": "error",
"no-empty-static-block": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-extra-boolean-cast": "error",
"no-extra-label": "error",
"no-global-assign": "error",
"no-implicit-coercion": ["error", { "string": false }],
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-invalid-this": "error",
"no-label-var": "error",
"no-loop-func": "error",
"no-multi-assign": "error",
"no-new-func": "error",
"no-object-constructor": "error",
"no-param-reassign": "error",
"no-redeclare": "error",
"no-restricted-syntax": [
"error",
{
"selector": "Literal[regex]",
"message": "Regex is the root of all evil!",
},
{
"selector": "NewExpression[callee.name='RegExp']",
"message": "Regex is the root of all evil!",
},
],
// "no-return-assign": "error",
"no-script-url": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unneeded-ternary": "error",
"no-unused-labels": "error",
"no-useless-call": "error",
"no-useless-catch": "error",
"no-useless-escape": "error",
"no-useless-rename": "error",
"no-useless-return": "error",
"no-var": "error",
"no-void": "error",
"no-with": "error",
"prefer-object-has-own": "error",
"prefer-spread": "error",
"@stylistic/js/array-bracket-spacing": ["error", "never"],
"@stylistic/js/array-element-newline": ["error", "consistent"],
"@stylistic/js/arrow-parens": ["error", "as-needed"],
"@stylistic/js/arrow-spacing": ["error", { "before": true, "after": true }],
"@stylistic/js/block-spacing": ["error", "always"],
"@stylistic/js/brace-style": "error",
"@stylistic/js/comma-dangle": ["error", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "never",
"exports": "never",
"functions": "never",
}],
"@stylistic/js/comma-spacing": "error",
"@stylistic/js/computed-property-spacing": "error",
"@stylistic/js/function-call-argument-newline": ["error", "consistent"],
"@stylistic/js/function-call-spacing": "error",
"@stylistic/js/key-spacing": "error",
"@stylistic/js/keyword-spacing": "error",
"@stylistic/js/no-extra-semi": "error",
"@stylistic/js/no-multi-spaces": "error",
"@stylistic/js/no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0, "maxBOF": 0 }],
"@stylistic/js/no-trailing-spaces": "error",
"@stylistic/js/no-whitespace-before-property": "error",
"@stylistic/js/object-curly-newline": ["error", { "consistent": true }],
"@stylistic/js/object-curly-spacing": ["error", "always"],
"@stylistic/js/padded-blocks": ["error", "never"],
"@stylistic/js/quote-props": ["error", "consistent"],
"@stylistic/js/rest-spread-spacing": "error",
"@stylistic/js/semi": ["error", "never"],
"@stylistic/js/space-before-blocks": "error",
"@stylistic/js/space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}],
"@stylistic/js/space-in-parens": "error",
"@stylistic/js/space-infix-ops": "error",
"@stylistic/js/space-unary-ops": ["error", { "words": true, "nonwords": false }],
"@stylistic/js/switch-colon-spacing": "error",
"@stylistic/js/template-curly-spacing": "error",
"@stylistic/js/template-tag-spacing": "error",
},
},
]