You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
402 B
21 lines
402 B
{
|
|
"rules": {
|
|
"array-callback-return": 0,
|
|
"func-name-matching": 0,
|
|
"max-lines-per-function": 0,
|
|
"max-statements-per-line": [2, { "max": 2 }],
|
|
"no-restricted-properties": 1,
|
|
"symbol-description": 0,
|
|
"prefer-promise-reject-errors": 0,
|
|
"consistent-return": 0,
|
|
},
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"Symbol": false,
|
|
"Promise": false,
|
|
"expect": false,
|
|
"assert": false
|
|
}
|
|
}
|
|
|