UNPKG

383 BPlain TextView Raw
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "id-length": [2, { "min": 1, "max": 30 }],
8 "new-cap": [2, {
9 "capIsNewExceptions": [
10 "CreateDataProperty",
11 "IsCallable",
12 "RequireObjectCoercible",
13 "ToObject",
14 ]
15 }],
16 },
17
18 "overrides": [
19 {
20 "files": "test/**",
21 "rules": {
22 "max-lines-per-function": 0,
23 "no-invalid-this": 1
24 },
25 },
26 ],
27}