-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
71 lines (71 loc) · 1.25 KB
/
.eslintrc
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"extends": [
"standard"
],
"globals": {
"expect": false,
"test": false,
"describe": false,
"jest": false,
"afterAll": false,
"beforeAll": false
},
"rules": {
"comma-dangle": [
2,
"never"
],
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"consistent-return": 0,
"camelcase": 0,
"curly": 2,
"eqeqeq": [
2,
"allow-null"
],
"global-require": 2,
"handle-callback-err": 2,
"indent": [
2,
2
],
"key-spacing": 2,
"new-cap": 2,
"no-cond-assign": 2,
"node/no-deprecated-api": 0,
"no-extend-native": 2,
"no-mixed-requires": 2,
"no-new-require": 2,
"no-proto": 2,
"no-sequences": 2,
"no-shadow": 0,
"no-shadow-restricted-names": 2,
"no-throw-literal": 2,
"no-underscore-dangle": 0,
"no-unused-expressions": 2,
"no-use-before-define": [
"error",
{
"functions": true,
"classes": true
}
],
"no-var": 2,
"object-curly-spacing": [
2,
"always"
],
"quotes": 2,
"semi-spacing": 2,
"space-before-function-paren": 2,
"space-infix-ops": 2,
"space-unary-ops": 2,
"strict": 2
}
}