-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy path.eslintrc.json
More file actions
34 lines (34 loc) · 758 Bytes
/
Copy path.eslintrc.json
File metadata and controls
34 lines (34 loc) · 758 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
{
"extends": "airbnb",
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"no-underscore-dangle": ["off"],
"comma-dangle": [2, "only-multiline"],
"react/prefer-stateless-function": ["off"],
"indent": ["error", 4],
"max-len": ["error", 200, 4],
"one-var": ["off"],
"no-confusing-arrow": "off",
"react/jsx-no-bind": ["off"],
"react/jsx-indent": [2, 4],
"react/jsx-indent-props": [2, 4],
"react/jsx-boolean-value": ["off"],
"eol-last": 0,
"no-param-reassign": [1]
},
"globals": [
"expect",
"describe",
"it",
"webpackIsomorphicTools",
"__CLIENT__",
"__SERVER__",
"__DEVELOPMENT__",
"__DEVTOOLS__",
"__INITIAL_STATE__"
]
}