-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
39 lines (39 loc) · 894 Bytes
/
.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
{
"extends": "airbnb",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
}
},
"rules": {
"arrow-body-style": 0,
"arrow-parens": 0,
"camelcase": 0,
"comma-dangle": 0,
"global-require": 0,
"import/prefer-default-export": 0,
"no-constant-condition": 0,
"max-len": 0,
"no-console": 0,
"object-curly-spacing": 0,
"react/forbid-prop-types": 0,
"react/jsx-curly-spacing": 0,
"react/jsx-filename-extension": 0,
"react/jsx-space-before-closing": 0,
"react/prefer-stateless-function": 0,
"semi": 2
},
"globals": {
"__DEVELOPMENT__": true,
"__CLIENT__": true,
"__SERVER__": true,
"__DISABLE_SSR__": true,
"__DEVTOOLS__": true,
"document": true,
"window": true
}
}