| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | { |
| 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-statements": [2, 20], | ||||
| 11 | "new-cap": [2, { "capIsNewExceptions": ["GetMethod"] }] | ||||
| 12 | }, | ||||
| 13 | |||||
| 14 | "overrides": [ | ||||
| 15 | { | ||||
| 16 | "files": "test/**", | ||||
| 17 | "rules": { | ||||
| 18 | "max-lines-per-function": [2, { "max": 68 }], | ||||
| 19 | }, | ||||
| 20 | } | ||||
| 21 | ], | ||||
| 22 | } | ||||