-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
38 lines (38 loc) · 848 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
{
"parser" : "babel-eslint",
"extends" : [
"standard",
"standard-react"
],
"plugins": [
"babel",
"react",
"promise"
],
"env" : {
"browser" : true
},
"globals" : {
"__DEV__" : false,
"__PROD__" : false,
"__DEBUG__" : false
},
"rules": {
"key-spacing" : [2, {
"singleLine" : {
"beforeColon" : false,
"afterColon" : true
},
"multiLine" : {
"mode" : "strict",
"beforeColon" : false,
"afterColon" : true
}
}],
"generator-star-spacing" : 1,
"jsx-quotes" : [2, "prefer-single"],
"max-len" : [2, 120, 2],
"object-curly-spacing" : [2, "always"],
"comma-dangle" : [2, "always-multiline"]
}
}