-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc
44 lines (44 loc) · 948 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
39
40
41
42
43
44
{
"extends": [
"airbnb-base",
"react-app",
"prettier"
],
"parser": "babel-eslint",
"rules": {
"comma-dangle": 0,
"semi": 0,
"spaced-comment": 0,
"no-param-reassign": [2, {
"props": false
}],
"no-underscore-dangle": 0,
"import/export": 0,
"import/no-cycle": 0,
"array-bracket-spacing": 0,
"no-confusing-arrow": 0,
"arrow-parens": 0,
"no-trailing-spaces": 0,
"react/jsx-wrap-multilines": 0,
"jsx-a11y/accessible-emoji": 0,
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": ["warn", { "aspects": ["invalidHref"] }],
"class-methods-use-this": 0,
"import/prefer-default-export": 0
},
"env": {
"jest": true
},
"globals": {
"window": true,
"document": true,
"localStorage": true,
"Request": true,
"fetch": true,
"Blob": true,
"graphql": true
},
"settings": {
"import/core-modules": ["react"]
}
}