mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-22 10:09:32 +02:00
24 lines
322 B
Plaintext
24 lines
322 B
Plaintext
{
|
|
"root": true,
|
|
|
|
"extends": "@ljharb",
|
|
|
|
"overrides": [
|
|
{
|
|
"files": "index.js",
|
|
"rules": {
|
|
"complexity": "off",
|
|
"no-param-reassign": "warn",
|
|
},
|
|
},
|
|
{
|
|
"files": "test/**/*.js",
|
|
"rules": {
|
|
"id-length": "off",
|
|
"getter-return": "off",
|
|
"max-lines-per-function": "warn",
|
|
},
|
|
},
|
|
],
|
|
}
|