UNPKG

493 BPlain TextView Raw
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "array-bracket-newline": 0,
8 "complexity": 0,
9 "eqeqeq": 1,
10 "func-style": [2, "declaration"],
11 "max-depth": 0,
12 "max-lines-per-function": 0,
13 "max-statements": 0,
14 "multiline-comment-style": 0,
15 "no-negated-condition": 1,
16 "no-param-reassign": 1,
17 "no-lonely-if": 1,
18 "no-shadow": 1,
19 "no-template-curly-in-string": 0,
20 },
21
22 "overrides": [
23 {
24 "files": "example/**",
25 "rules": {
26 "no-console": 0,
27 },
28 },
29 ],
30}