-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
55 lines (55 loc) · 917 Bytes
/
.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
47
48
49
50
51
52
53
54
55
{
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7
},
"env": {
"node": true,
"es6": true
},
"rules": {
"strict": "error",
"no-use-before-define": "error",
"curly": "error",
"eqeqeq": "error",
"dot-notation": "error",
"no-var": "error",
"no-caller": "error",
"guard-for-in": "warn",
"no-eq-null": "error",
"no-console": "warn",
"no-lone-blocks": "error",
"no-magic-numbers": [
"warn",
{
"ignore": [
-1,
0,
1
],
"ignoreArrayIndexes": true
}
],
"quotes": [
"error",
"double",
{
"allowTemplateLiterals": true,
"avoidEscape": true
}
],
"quote-props": ["warn", "as-needed"],
"semi": ["error", "always"],
"indent": ["error", "tab", { "SwitchCase": 1 }],
"no-debugger": "warn"
},
"overrides": [
{
"files": "**/*.test.js",
"env": {
"jest": true
}
}
]
}