-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
45 lines (45 loc) · 1.01 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"globals": {
"connect": true,
"__CLIENT__": true,
"__DEVELOPMENT__": true,
"__PRODUCTION__": true,
"expect": true
},
"rules": {
"max-len": 0,
"react/jsx-filename-extension": 0,
"react/prefer-stateless-function": 0,
"react/jsx-no-bind": 0,
"react/jsx-first-prop-new-line": 0,
"react/react-in-jsx-scope": 0,
"import/newline-after-import": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"global-require": 0,
"no-unused-expressions": 0,
"consistent-return": 0,
"no-extra-boolean-cast": 0,
"no-param-reassign": 0,
"no-else-return": 0,
"arrow-body-style": 0,
"prefer-template": 0,
"no-useless-escape": 0,
"no-console": 0,
"no-path-concat": 0,
"no-empty": 0,
"func-names": 0,
"import/imports-first": 0
},
"plugins": [
"react"
]
}