1 | {
|
2 | "root": true,
|
3 |
|
4 | "extends": "@ljharb",
|
5 |
|
6 | "rules": {
|
7 | "complexity": 0,
|
8 | "eqeqeq": [2, "allow-null"],
|
9 | "func-style": 0,
|
10 | "id-length": 0,
|
11 | "indent": [2, 2],
|
12 | "max-depth": 0,
|
13 | "max-lines": 0,
|
14 | "max-lines-per-function": 0,
|
15 | "max-statements": 0,
|
16 | "max-statements-per-line": [2, { "max": 3 }],
|
17 | "no-continue": 1,
|
18 | "no-empty": 1,
|
19 | "no-magic-numbers": 0,
|
20 | "no-mixed-operators": 1,
|
21 | "max-nested-callbacks": 0,
|
22 | "no-param-reassign": 1,
|
23 | "no-plusplus": 0,
|
24 | "no-redeclare": 1,
|
25 | "no-restricted-syntax": 1,
|
26 | "no-script-url": 1,
|
27 | "sort-keys": 0,
|
28 | },
|
29 |
|
30 | "overrides": [
|
31 | {
|
32 | "files": "test/**/*",
|
33 | "rules": {
|
34 | "no-sequences": 1,
|
35 | },
|
36 | },
|
37 | ],
|
38 | }
|