-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
61 lines (55 loc) · 1.15 KB
/
eslint.config.js
File metadata and controls
61 lines (55 loc) · 1.15 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
/**
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import globals from 'globals';
import pluginJs from '@eslint/js';
export default [
{
ignores: ['node_modules', 'dist/'],
},
// 1. Global Recommended Config
pluginJs.configs.recommended,
// 2. Base Configuration (Applied to all files)
{
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
globals: {
...globals.browser,
...globals.es6,
...globals.node,
...globals.mocha,
},
},
},
// 3. Override for wdio.conf.js
{
files: ['wdio.conf.js'],
rules: {
'max-len': 'off',
},
},
// 4. Override for Test Files
{
files: ['test/**/*.js'],
languageOptions: {
globals: {
...globals.mocha, // Ensures mocha globals are present here too
$: 'readonly',
browser: 'readonly',
expect: 'readonly',
},
},
rules: {
'no-invalid-this': 'off',
'max-len': [
'error',
{
ignorePattern: '^\\s*import|= require\\(|^\\s*it\\(|^\\s*describe\\(',
ignoreUrls: true,
},
],
},
},
];