-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
69 lines (69 loc) · 1.42 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
{
"root": true,
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"env": {
"es6": true,
"node": true,
"jest/globals": true
},
"extends": "eslint:recommended",
"plugins": [
"jest"
],
"rules": {
"arrow-parens": 0,
"generator-star-spacing": 0,
"no-debugger": 2,
"no-console": 2,
"no-empty": 0,
"curly": 2,
"eqeqeq": 2,
"no-self-compare": 2,
"array-bracket-spacing": 2,
"camelcase": [
2,
{
"properties": "never"
}
],
"comma-spacing": [
2,
{
"before": false,
"after": true
}
],
"comma-style": [
2,
"last"
],
"computed-property-spacing": [
2,
"never"
],
"semi": 2,
"indent": [
2,
4,
{
"SwitchCase": 1
}
],
"keyword-spacing": 2,
"key-spacing": [
2,
{
"mode": "minimum"
}
],
"no-whitespace-before-property": 2,
"space-in-parens": 2,
"space-infix-ops": 2,
"space-before-blocks": 2,
"space-before-function-paren": 2,
"arrow-spacing": 2
}
}