2021-08-02 14:55:03 -06:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"es2021": true,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 12,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"rules": {
|
2021-08-03 08:14:40 -06:00
|
|
|
"indent": [
|
|
|
|
"warn",
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
"ArrayExpression": "first",
|
|
|
|
"CallExpression": { "arguments": "first" },
|
|
|
|
"MemberExpression": "off",
|
|
|
|
"ObjectExpression": "off",
|
|
|
|
"ignoreComments": true,
|
|
|
|
"ignoredNodes": [
|
2021-08-03 08:59:01 -06:00
|
|
|
"AssignmentExpression:has(Literal)"
|
2021-08-03 08:14:40 -06:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2021-08-02 14:55:03 -06:00
|
|
|
"getter-return": "off",
|
|
|
|
"no-control-regex": "off",
|
|
|
|
"no-empty": [ "error", { "allowEmptyCatch": true } ],
|
|
|
|
"no-useless-escape": "off"
|
|
|
|
}
|
|
|
|
}
|