mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
28 lines
474 B
Plaintext
28 lines
474 B
Plaintext
{
|
|
"root": true,
|
|
|
|
"extends": "@ljharb",
|
|
|
|
"rules": {
|
|
"consistent-return": 1,
|
|
"eqeqeq": [2, "always", { "null": "ignore" }],
|
|
"func-name-matching": 0,
|
|
"id-length": 0,
|
|
"max-lines-per-function": 0,
|
|
"max-statements": 0,
|
|
"multiline-comment-style": 0,
|
|
"new-cap": [2, { "capIsNewExceptions": ["GetIntrinsic"] }],
|
|
"no-magic-numbers": 0,
|
|
},
|
|
|
|
"overrides": [
|
|
{
|
|
"files": "test/**",
|
|
"rules": {
|
|
"max-params": [2, 3],
|
|
"no-new-func": 1,
|
|
},
|
|
},
|
|
],
|
|
}
|