projecte_ionic/node_modules/array-includes/.eslintrc
2022-02-09 18:30:03 +01:00

32 lines
473 B
Plaintext
Executable file

{
"root": true,
"extends": "@ljharb",
"rules": {
"complexity": 0,
"id-length": [2, { "min": 1, "max": 26 }],
"max-statements": [2, 14],
"new-cap": [2, {
"capIsNewExceptions": [
"GetIntrinsic",
"ToObject",
"ToIntegerOrInfinity",
"ToLength",
"SameValueZero",
"RequireObjectCoercible",
],
}],
},
"overrides": [
{
"files": "test/**",
"rules": {
"max-lines-per-function": 0,
"no-invalid-this": 1,
},
},
],
}