-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
38 lines (33 loc) · 887 Bytes
/
.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
{
"extends": "airbnb",
"env": {
"node": true,
"browser": true,
"jest": true
},
"globals": {
"document": true,
"test": true,
"expect": true,
"describe": true,
"it": true,
"jest": true,
"google": true
},
"rules": {
"strict": 0,
"comma-dangle": 0,
"no-tabs": 0,
"indent": ["error", 4],
"arrow-parens": [2, "always"],
"no-underscore-dangle": [2, {"allowAfterThis": true}],
"max-len": [2, 240, 4, {"ignoreUrls": true}],
"no-confusing-arrow": [2, {"allowParens": true}],
"object-curly-spacing": [2, "never"],
"linebreak-style": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"jsx-a11y/href-no-hash": "off"
}
}