-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
56 lines (56 loc) · 1.22 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"globals": {
"connect": true,
"gapi": true,
"FB": true,
"VK": true,
"uploadcare": true,
"Packery": true,
"__CLIENT__": true,
"__DEVELOPMENT__": true,
"__PRODUCTION__": true,
"__PROJECT__": true,
"expect": true,
"Modernizr": true
},
"rules": {
"max-len": 0,
"no-console": 0,
"no-unused-expressions": 0,
"no-param-reassign": 0,
"no-unneeded-ternary": 0,
"arrow-body-style": 0,
"react/jsx-no-bind": 0,
"default-case": 0,
"prefer-template": 0,
"padded-blocks": 0,
"camelcase": 0,
"no-else-return": 0,
"func-names": 0,
"consistent-return": 0,
"array-callback-return": 0,
"no-confusing-arrow": 0,
"react/jsx-closing-bracket-location": 0,
"react/react-in-jsx-scope": 0,
"no-empty": 0,
"react/prefer-stateless-function": 0,
"no-nested-ternary": 0,
"no-did-update-set-state": 0,
"no-loop-func": 0,
"no-whitespace-before-property": 0,
"prefer-arrow-callback": 0,
"react/sort-comp": 0,
"no-case-declarations": 0,
"no-alert": 0
},
"plugins": [
"react"
]
}