-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
35 lines (35 loc) · 710 Bytes
/
Copy path.eslintrc
File metadata and controls
35 lines (35 loc) · 710 Bytes
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
{
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"max-len": 0,
"object-shorthand": 1,
"no-tabs": 1,
"arrow-body-style": 1,
"quote-props": 1,
"react/prop-types": 1,
"react/no-array-index-key": 1,
"no-param-reassign": 1,
"react/no-did-mount-set-state": 1,
"import/no-named-as-default": 1,
"react/no-unescaped-entities": 1,
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }]
},
"parser": "babel-eslint",
"globals": {
"document": true,
"window": true
},
"env": {
"jest": true,
"browser": true
}
}