This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/es-get-iterator/.eslintrc
2020-11-01 22:46:04 +00:00

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,
},
},
],
}