forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.mjs
More file actions
230 lines (207 loc) · 4.97 KB
/
eslint.config.mjs
File metadata and controls
230 lines (207 loc) · 4.97 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
import { defineConfig, globalIgnores } from "eslint/config";
import config from "eslint-config-webpack";
import configs from "eslint-config-webpack/configs.js";
import globals from "globals";
export default defineConfig([
globalIgnores([
// Ignore some test files
"test/**/*.*",
"!test/*.js",
"!test/*.cjs",
"!test/*.mjs",
"!test/**/webpack.config.js",
"!test/**/test.config.js",
"!test/**/test.filter.js",
"test/cases/parsing/es2022/test.filter.js",
"!test/**/errors.js",
"!test/**/warnings.js",
"!test/**/deprecations.js",
"!test/**/infrastructure-log.js",
"!test/helpers/*.*",
"!test/benchmarkCases/**/*.mjs",
"!test/_helpers/**/*.mjs",
"!test/runner/*.js",
"test/js/**/*.*",
// TODO fix me
// This is not exactly typescript
"assembly/**/*.ts",
// Ignore some folders
"benchmark",
"coverage",
// Ignore generated files
"*.check.js",
// Ignore not supported files
"*.d.ts",
// Ignore precompiled schemas
"schemas/**/*.check.js",
// Auto generation
"lib/util/semver.js",
// Ignore some examples files
"examples/**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,md}",
"!examples/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,md}",
"!examples/**/webpack.config.js",
"!examples/**/test.filter.js"
]),
{
ignores: ["lib/**/*.runtime.js", "hot/*.js"],
extends: [config],
rules: {
// Too noise
"jsdoc/require-property-description": "off",
// We have helpers for the default configuration
"new-cap": [
"error",
{
newIsCapExceptions: [],
capIsNewExceptions: ["A", "F", "D", "MODULES_GROUPERS"]
}
],
// Revisit it in future
"id-length": "off",
// Revisit it in future
"no-use-before-define": "off",
// TODO We need allow to have `_arg` in tooling and use `after-used` value for `args`
"no-unused-vars": [
"error",
{
vars: "all",
varsIgnorePattern: "^_",
args: "none",
argsIgnorePattern: "^_",
caughtErrors: "all",
caughtErrorsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
ignoreRestSiblings: true,
ignoreClassWithStaticInitBlock: false,
reportUsedIgnorePattern: false
}
],
// TODO enable me in future
"prefer-destructuring": "off"
}
},
{
files: ["lib/**/*.js"],
extends: [configs["webpack/special"]]
},
{
files: ["bin/**/*.js"],
// Allow to use `dynamic` import
languageOptions: {
ecmaVersion: 2020
},
rules: {
"no-console": "off",
// Allow to use `dynamic` import and hashbang
"n/no-unsupported-features/es-syntax": [
"error",
{
ignores: ["hashbang", "dynamic-import"]
}
]
}
},
{
files: ["lib/**/*.runtime.js", "hot/*.js"],
extends: [configs["javascript/es5"]],
languageOptions: {
sourceType: "commonjs",
globals: {
...globals.browser,
...globals.es5,
Promise: false,
Map: false,
Set: false,
process: false
}
},
rules: {
strict: "off",
"block-scoped-var": "off",
// Allow logging
"no-console": "off",
// We replace `$VAR$` on real code
"no-unused-vars": "off",
"no-undef-init": "off",
"id-length": "off",
"jsdoc/require-jsdoc": "off",
// Revisit it in future
"no-use-before-define": "off",
"func-names": "off",
"func-style": "off"
}
},
{
files: ["test/**/*.js"],
rules: {
// Some our tests contain `package.json` without `engines`, but tests should work on Node.js@10, so let's disable it
"n/prefer-node-protocol": "off",
// No need here, we have custom test logic, so except can be placed in different places
"jest/no-standalone-expect": "off",
// We have a lot of custom tests
"jest/expect-expect": "off",
// We have a lot of custom tests
"jest/no-confusing-set-timeout": "off"
}
},
{
files: ["test/helpers/**/*.{js,cjs,mjs}"],
languageOptions: {
globals: {
...globals.jest
}
},
rules: {
"no-eval": "off",
"no-console": "off",
// Allow to use any builtins, syntax and node API in tests
"n/no-unsupported-features/es-builtins": "off",
"n/no-unsupported-features/es-syntax": "off",
"n/no-unsupported-features/node-builtins": "off"
}
},
{
files: ["test/**/*.mjs"],
languageOptions: {
ecmaVersion: 2022
}
},
{
files: ["setup/**/*.js", "tooling/**/*.js"],
languageOptions: {
ecmaVersion: 2022
},
rules: {
"no-console": "off"
}
},
{
files: ["test/Compiler-filesystem-caching.test.js"],
languageOptions: {
ecmaVersion: 2022
}
},
{
files: [
"test/configCases/{dll-plugin-entry,dll-plugin-side-effects,dll-plugin}/**/webpack.config.js",
"test/NodeTemplatePlugin.test.js",
"test/PersistentCaching.test.js"
],
rules: {
"import/extensions": "off",
"import/no-unresolved": "off"
}
},
{
files: ["examples/**/*.js"],
rules: {
"no-console": "off",
// For examples purposes
"n/no-unsupported-features/es-builtins": "off",
"n/no-unsupported-features/es-syntax": "off",
"n/no-unsupported-features/node-builtins": "off",
"import/extensions": "off",
"import/no-unresolved": "off"
}
}
]);