{ "root": true, "extends": "@ljharb", "rules": { "id-length": "off", "new-cap": ["error", { "capIsNewExceptions": [ "ArrayCreate", "CreateDataPropertyOrThrow", "Get", "LengthOfArrayLike", "ToObject", "ToString", ], }], "no-magic-numbers": ["error", { "ignore": [0, 1], }], }, "overrides": [ { "files": "test/**", "rules": { "max-lines-per-function": "off", "no-magic-numbers": "off", }, }, ], }