UNPKG

511 BPlain TextView Raw
1{
2 "root": true,
3
4 "extends": "@ljharb/eslint-config/node/0.4",
5
6 "rules": {
7 "array-element-newline": 0,
8 "complexity": 0,
9 "func-style": [2, "declaration"],
10 "max-lines-per-function": 0,
11 "max-nested-callbacks": 1,
12 "max-statements-per-line": 1,
13 "max-statements": 0,
14 "multiline-comment-style": 0,
15 "no-continue": 1,
16 "no-param-reassign": 1,
17 "no-restricted-syntax": 1,
18 "object-curly-newline": 0,
19 },
20
21 "overrides": [
22 {
23 "files": "test/**",
24 "rules": {
25 "camelcase": 0,
26 },
27 },
28 ]
29}