-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.json
46 lines (46 loc) · 1.33 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["standard"],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"parser": "babel-eslint",
"rules": {
"semi": [2, "always"],
"comma-dangle": [2, "always-multiline"],
"space-before-function-paren": [
"error",
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}
],
"eqeqeq": ["warn", "always"],
"indent": [
"warn",
4,
{
"ArrayExpression": "first",
"CallExpression": { "arguments": "first" },
"MemberExpression": "off",
"ObjectExpression": "off",
"ignoreComments": true,
"ignoredNodes": ["AssignmentExpression:has(Literal)"]
}
],
"getter-return": "off",
"no-control-regex": "off",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-promise-executor-return": ["error"],
"no-template-curly-in-string": ["error"],
"no-unreachable-loop": ["error"],
"no-useless-backreference": ["error"],
"no-useless-escape": "off",
"require-atomic-updates": ["warn"]
}
}