| 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, 20], | ||||
| 8 | "eqeqeq": [2, "allow-null"], | ||||
| 9 | "func-name-matching": [1], | ||||
| 10 | "max-depth": [1, 4], | ||||
| 11 | "max-statements": [2, 26], | ||||
| 12 | "no-extra-parens": [1], | ||||
| 13 | "no-magic-numbers": [0], | ||||
| 14 | "no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"], | ||||
| 15 | "sort-keys": [0], | ||||
| 16 | } | ||||
| 17 | } | ||||