filesafe/.eslintrc.json
Bobby Wibowo caafe1ac63
Updated .eslintrc.json
Temporarily disabled new eslint rule "no-async-promise-executor".
I'll fix the bits that emit the error at a later date.
2019-07-15 23:12:14 +07:00

37 lines
529 B
JSON

{
"root": true,
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"node": true
},
"extends": [
"standard"
],
"rules": {
"curly": [
"error",
"multi",
"consistent"
],
"prefer-const": [
"error",
{
"destructuring": "any",
"ignoreReadBeforeAssign": false
}
],
"object-shorthand": [
"error",
"always"
],
"quotes": [
"error",
"single"
],
"no-async-promise-executor": 0,
"no-var": "error"
}
}