18 lines
397 B
Plaintext
Raw Permalink Normal View History

2017-09-20 23:19:33 +02:00
{
2022-01-14 20:13:26 +01:00
"root": true,
"extends": "@ljharb",
2017-09-20 23:19:33 +02:00
"rules": {
"complexity": [2, 15],
2022-01-14 20:13:26 +01:00
"eqeqeq": [2, "allow-null"],
"func-name-matching": [1],
2017-09-20 23:19:33 +02:00
"max-depth": [1, 4],
2022-01-14 20:13:26 +01:00
"max-statements": [2, 26],
"no-extra-parens": [1],
"no-magic-numbers": [0],
"no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
"sort-keys": [0],
2017-09-20 23:19:33 +02:00
}
}