-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
39 lines (38 loc) · 831 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
{
"parser": "babel-eslint",
"plugins": [
"react",
"babel"
],
"settings": {
"ecmascript": 6,
"jsx": true
},
"env": {
"node": true,
"es6": true
},
"globals": {
"document": true,
"test": true,
"expect": true,
"describe": true,
"it": true,
"fetch": true,
"jest": true,
"beforeEach": true,
"window": true
},
"rules": {
"indent": [1, 4, { "SwitchCase": 1 }],
"linebreak-style": [0],
"no-multi-assign": [0],
"camelcase": 0,
"react/jsx-filename-extension": [0],
"react/jsx-indent": [1, 4],
"react/jsx-indent-props": [1, 4],
"react/react-in-jsx-scope": 0,
"react/prop-types": 0
},
"extends": "airbnb"
}