-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
73 lines (73 loc) · 1.73 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"globals": {
"__DEV__" : false,
"__PROD__" : false,
"__DEBUG__" : false,
"__DEBUG_NW__" : false
},
"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,
"import/no-unresolved": 0,
"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"
]
}],
"no-undef": 1,
"no-unused-vars": 1,
"react/display-name": 1,
"react/jsx-no-duplicate-props": 1,
"react/jsx-no-undef": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-danger": 1,
"react/no-deprecated": [1, {"react": "15.1.0"}],
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-direct-mutation-state": 1,
"react/no-is-mounted": 1,
"react/no-unknown-property": 1,
"react/react-in-jsx-scope": 1
},
"settings": {
"react": {
"pragma": "React",
"version": "15.1.0"
}
},
"env": {
"browser": true,
"node": true
}
}