1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 20:21:55 +00:00
musix-oss/node_modules/es-get-iterator/.eslintrc

28 lines
474 B
Plaintext
Raw Normal View History

2020-03-03 20:30:50 +00:00
{
"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,
},
},
],
}