-
Notifications
You must be signed in to change notification settings - Fork 19
/
.eslintrc
52 lines (52 loc) · 1.08 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"comma-dangle": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"import/no-unresolved": 0,
"strict": 0,
"import/first": 0,
" no-confusing-arrow": 0,
"react/react-in-jsx-scope": 0,
"no-multi-assign": 0
},
"ecmaFeatures": {
"classes": true,
"jsx": true
},
"plugins": ["react", "jest"],
"settings": {
"import/resolver": "webpack"
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"globals": {
"__DEVELOPMENT__": true,
"__CLIENT__": true,
"__SERVER__": true,
"__DISABLE_SSR__": true,
"__DEVTOOLS__": true,
"socket": true,
"webpackIsomorphicTools": true,
"ga": true,
"Raven": true,
"mixpanel": true,
"expect": true,
"document": true,
"window": true,
"browser": true,
"FB": true,
"sinon": true,
"jest": true
},
"env": {
"mocha": true,
"amd": true
}
}