| 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": 0, |
| 8 | "consistent-return": 1, |
| 9 | "func-name-matching": 0, |
| 10 | "id-length": [2, { "min": 1, "max": 25, "properties": "never" }], |
| 11 | "indent": [2, 4], |
| 12 | "max-lines-per-function": [2, { "max": 150 }], |
| 13 | "max-params": [2, 14], |
| 14 | "max-statements": [2, 52], |
| 15 | "multiline-comment-style": 0, |
| 16 | "no-continue": 1, |
| 17 | "no-magic-numbers": 0, |
| 18 | "no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"], |
| 19 | "operator-linebreak": [2, "before"], |
| 20 | } |
| 21 | } |