-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc
46 lines (46 loc) · 1.06 KB
/
.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
45
46
{
"extends": "airbnb",
"parser": "babel-eslint",
"globals": {
"__DEV__" : false,
"__PROD__" : false,
"__DEBUG__" : false,
"__DEBUG_NW__" : false
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"strict": 0,
"no-irregular-whitespace": 0,
"new-cap": [2, {"newIsCap": false, "capIsNew": false}],
"comma-dangle": [1, "never"],
"key-spacing": [0, {
"beforeColon": true,
"afterColon": true
}],
"indent": [2, 2, {"SwitchCase": 1}],
"no-else-return": 0,
"no-param-reassign": [2, {
"props": false
}],
"space-before-function-paren": [0, "always"],
"react/jsx-quotes": [0, "single"],
"react/prop-types": 0,
"react/no-multi-comp": [1, { "ignoreStateless": true }],
"react/sort-comp": [1, {
"order": [
"/^propTypes$/",
"/^defaultProps$/",
"/^getMeteorData$/",
"lifecycle",
"/^on.+$/",
"render",
"/^render.+$/",
"everything-else"
]
}]
}
}