blob: 09e0c6c26c6dc2c93d29c2b4158ab2e73cf94d6c [file] [log] [blame]
Kaido Kertf585e262020-06-08 11:42:28 -07001{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "complexity": [2, 14],
8 "func-name-matching": 0,
9 "id-length": [2, { "min": 1, "max": 24, "properties": "never" }],
10 "max-lines-per-function": [2, { "max": 68 }],
11 "max-statements": [2, 20],
12 "new-cap": [2, { "capIsNewExceptions": ["GetMethod"] }]
13 }
14}