2017-07-13 16:28:45 -05:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"node": true,
|
|
|
|
"mocha": true,
|
2019-07-16 01:40:01 -05:00
|
|
|
"es6": true,
|
|
|
|
"browser": true
|
2017-07-13 16:28:45 -05:00
|
|
|
},
|
2018-01-15 17:03:43 -05:00
|
|
|
"globals": {
|
|
|
|
"jsdom": true
|
|
|
|
},
|
2017-07-13 16:28:45 -05:00
|
|
|
"rules": {
|
|
|
|
"valid-jsdoc": 0,
|
|
|
|
"no-redeclare": 1,
|
|
|
|
"no-console": [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"allow": [
|
2017-10-22 05:28:38 -05:00
|
|
|
"log",
|
|
|
|
"error"
|
2017-07-13 16:28:45 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2019-07-16 01:40:01 -05:00
|
|
|
"no-useless-escape": 0,
|
2019-12-15 02:52:55 -05:00
|
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
2019-12-23 03:29:27 -05:00
|
|
|
"@typescript-eslint/no-empty-function": 0,
|
|
|
|
"handle-callback-err": 0,
|
|
|
|
"import/order": 0,
|
|
|
|
"prefer-const": 0,
|
|
|
|
"prefer-promise-reject-errors": 1
|
2017-07-13 16:28:45 -05:00
|
|
|
}
|
|
|
|
}
|