forked from dequelabs/axe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
395 lines (394 loc) · 11.1 KB
/
eslint.config.js
File metadata and controls
395 lines (394 loc) · 11.1 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
const prettier = require('eslint-config-prettier');
const globals = require('globals');
const mochaNoOnly = require('eslint-plugin-mocha-no-only');
module.exports = [
prettier,
{
rules: {
'mocha-no-only/mocha-no-only': ['error'],
'no-bitwise': 2,
camelcase: 2,
curly: 2,
eqeqeq: 2,
'guard-for-in': 2,
'wrap-iife': [2, 'any'],
'no-use-before-define': [
2,
{
functions: false
}
],
'new-cap': 2,
'no-caller': 2,
'no-empty': 2,
'no-new': 2,
'no-plusplus': 0,
'no-undef': 2,
'no-unused-vars': 2,
strict: 0,
'max-params': [2, 6],
'max-depth': [2, 5],
'max-len': 0,
semi: 0,
'no-cond-assign': 0,
'no-debugger': 2,
'no-eq-null': 0,
'no-eval': 2,
'no-unused-expressions': 0,
'block-scoped-var': 0,
'no-iterator': 0,
'linebreak-style': 0,
'no-loop-func': 0,
'no-multi-str': 0,
'no-proto': 0,
'no-script-url': 0,
'dot-notation': 2,
'no-new-func': 0,
'no-new-wrappers': 0,
'no-shadow': 2,
'no-restricted-syntax': [
'error',
{
selector: 'MemberExpression[property.name=tagName]',
message: "Don't use node.tagName, use node.nodeName instead."
},
// node.attributes can be clobbered so is unsafe to use
// @see https://github.com/dequelabs/axe-core/pull/1432
{
// node.attributes
selector:
'MemberExpression[object.name=node][property.name=attributes]',
message:
"Don't use node.attributes, use node.hasAttributes() or axe.utils.getNodeAttributes(node) instead."
},
{
// vNode.actualNode.attributes
selector:
'MemberExpression[object.property.name=actualNode][property.name=attributes]',
message:
"Don't use node.attributes, use node.hasAttributes() or axe.utils.getNodeAttributes(node) instead."
},
// node.contains doesn't work with shadow dom
// @see https://github.com/dequelabs/axe-core/issues/4194
{
// node.contains()
selector:
'CallExpression[callee.object.name=node][callee.property.name=contains]',
message:
"Don't use node.contains(node2) as it doesn't work across shadow DOM. Use axe.utils.contains(node, node2) instead."
},
{
// vNode.actualNode.contains()
selector:
'CallExpression[callee.object.property.name=actualNode][callee.property.name=contains]',
message:
"Don't use node.contains(node2) as it doesn't work across shadow DOM. Use axe.utils.contains(node, node2) instead."
}
]
},
plugins: {
'mocha-no-only': mochaNoOnly
}
},
{
languageOptions: {
ecmaVersion: 2023,
globals: {
axe: true,
Promise: true,
...globals.node,
...globals.es2015
}
}
},
{
files: ['lib/**/*.js'],
// reporters and check after methods should not have access to window or document
ignores: ['lib/core/reporters/**/*.js', 'lib/**/*-after.js'],
languageOptions: {
sourceType: 'module',
// lib files should not access global window properties without going through window (i.e. do not add globals.browser)
globals: {
window: true,
document: true,
...globals.node,
...globals.es2015
}
},
rules: {
'func-names': [2, 'as-needed'],
'prefer-const': 2,
'no-use-before-define': 'off'
}
},
{
// disallow imports from node modules
ignores: ['lib/core/imports/**/*.js'],
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
regex: '^[^.]',
message: 'Only core/imports files should import from node modules'
}
]
}
]
}
},
{
// disallow imports in standards
files: ['lib/standards/**/*.js'],
// index file can import other standards and from utils
ignores: ['lib/standards/index.js'],
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
group: ['*'],
message:
"Standard files shouldn't use imports as they are just hard coded data objects"
}
]
}
]
}
},
{
// restrict imports to core/utils files to other core/utils, core, core/base, standards, imports, or reporters/helpers
files: ['lib/core/utils/**/*.js'],
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
// e.g. "../commons/aria/" or "../public/"
regex:
'.*\\.\\.\\/(commons|public|checks|rules)(\\/|$)|.*\\.\\.\\/reporters\\/.*?\\.js',
message:
'Util files should only import from other utils, core, or standard files'
},
// disallow imports from node modules
// seems only 1 regex pattern is allowed to match as not having this allows node module imports even while having the general rule above for all files)
{
regex: '^[^.]',
message: 'Only core/imports files should import from node modules'
}
]
}
]
}
},
{
// restrict imports to core/public files to other core/public, or imports allowed by core/utils
files: ['lib/core/public/**/*.js'],
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
// e.g. "../commons/aria/" or "../checks/"
regex:
'.*\\.\\.\\/(commons|checks|rules)(\\/|$)|.*\\.\\.\\/reporters\\/.*?\\.js',
message:
'Public files should only import from other public, util, core, or standard files'
},
// disallow imports from node modules
{
regex: '^[^.]',
message: 'Only core/imports files should import from node modules'
}
]
}
]
}
},
{
// disallow imports in core/imports files to any non-node module
files: ['lib/core/imports/**/*.js'],
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
// relative file paths
regex: '\\\.\\\.\\/',
message: 'Import files should only import from node modules'
}
]
}
]
}
},
{
// disallow imports in core/reporters files to any non-util file
files: ['lib/core/reporters/**/*.js'],
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
// e.g. "../commons/aria/" or "../checks/"
regex: '.*\\.\\.\\/(commons|base|public|checks|rules)(\\/|$)',
message: 'Reporter files should only import util functions'
},
// disallow imports from node modules
{
regex: '^[^.]',
message: 'Only core/imports files should import from node modules'
}
]
}
]
}
},
{
// disallow imports in commons files to any check or rule
files: ['lib/commons/**/*.js'],
rules: {
'no-restricted-imports': [
'error',
{
patterns: [
{
// e.g. ../checks/"
regex: '.*\\.\\.\\/(checks|rules)(\\/|$)',
message: 'Commons files cannot import from checks and rules'
},
// disallow imports from node modules
{
regex: '^[^.]',
message: 'Only core/imports files should import from node modules'
}
]
}
]
}
},
{
// Utils should be functions that can be used without setting up the virtual tree, as opposed to commons which require the virtual tree
files: ['lib/core/utils/**/*.js'],
ignores: [
// these are files with known uses of virtual node that are legacy before this rule was enforced
'lib/core/utils/closest.js',
'lib/core/utils/contains.js',
'lib/core/utils/query-selector-all-filter.js',
'lib/core/utils/selector-cache.js',
// this will create a virtual node if one doesn't exist already in order to truncate the html output properly
'lib/core/utils/dq-element.js',
// this sets up the virtual tree so is allowed vNode
'lib/core/utils/get-flattened-tree.js'
],
rules: {
'no-restricted-syntax': [
'error',
{
selector: 'MemberExpression[object.name=vNode]',
message:
"Utils is meant for utility functions that work independently of axe's state; utilities that require the virtual tree to be set up should go in commons, not utils."
},
{
selector: 'MemberExpression[object.name=virtualNode]',
message:
"Utils is meant for utility functions that work independently of axe's state; utilities that require the virtual tree to be set up should go in commons, not utils."
}
]
}
},
{
files: ['doc/examples/chrome-debugging-protocol/axe-cdp.js'],
languageOptions: {
globals: {
window: true
}
}
},
{
// after functions and reporters will not be run inside the same context as axe.run so should not access browser globals that require context specific information (window.location, window.getComputedStyles, etc.)
files: ['lib/**/*-after.js', 'lib/core/reporters/**/*.js'],
languageOptions: {
sourceType: 'module'
}
},
{
// polyfills are mostly copy-pasted from sources so we don't control their styling
files: [
'lib/core/imports/polyfills.js',
'lib/core/utils/pollyfill-elements-from-point.js'
],
rules: {
'func-names': 0,
'no-bitwise': 0,
curly: 0,
eqeqeq: 0
}
},
{
files: ['test/act-rules/**/*.js', 'test/aria-practices/**/*.js'],
languageOptions: {
globals: {
...globals.mocha
}
},
rules: {
'new-cap': 0,
'no-use-before-define': 0
}
},
{
files: ['test/**/*.js'],
languageOptions: {
globals: {
...globals.mocha,
...globals.browser,
...globals.es2015,
...globals.node,
assert: true,
helpers: true,
checks: true,
sinon: true
}
},
rules: {
'new-cap': 0,
'no-use-before-define': 0
}
},
{
files: ['.github/bin/*.mjs'],
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
globals: {
...globals.node,
...globals.es2024
}
},
rules: {
// Helper scripts for github can import from anywhere
'no-restricted-imports': ['off']
}
},
{
ignores: [
'**/node_modules/*',
'**/tmp/*',
'patches/*',
'build/tasks/aria-supported.js',
'doc/api/*',
'doc/examples/jest_react/*.js',
'lib/core/imports/polyfills.js',
'lib/core/utils/uuid.js',
'axe.js',
'axe.min.js'
]
}
];