1 | {
|
2 | "root": true,
|
3 |
|
4 | "extends": "@ljharb",
|
5 |
|
6 | "rules": {
|
7 | "complexity": 0,
|
8 | "consistent-return": 1,
|
9 | "func-style": [2, "declaration"],
|
10 | "max-depth": 1,
|
11 | "max-lines-per-function": 0,
|
12 | "max-statements": 0,
|
13 | "multiline-comment-style": 0,
|
14 | "no-control-regex": 1,
|
15 | "no-misleading-character-class": 1,
|
16 | "no-restricted-syntax": 1,
|
17 | "no-throw-literal": 0,
|
18 | "no-unmodified-loop-condition": 0,
|
19 | "sort-keys": 0,
|
20 | },
|
21 | }
|