UNPKG

519 BPlain TextView Raw
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "consistent-return": 1,
8 "max-len": 0,
9 "max-lines-per-function": 0,
10 "max-params": 1,
11 "max-statements-per-line": [2, { "max": 2 }],
12 "no-continue": 1,
13 "no-negated-condition": 1,
14 "no-param-reassign": 1,
15 "no-redeclare": 1,
16 "no-restricted-syntax": 1,
17 "object-curly-newline": 0,
18 "max-statements": 1,
19 "operator-linebreak": 0,
20 "sort-keys": 1,
21 },
22
23 "overrides": [
24 {
25 "files": "example/**",
26 "rules": {
27 "no-console": 0,
28 },
29 },
30 ],
31}