forked from ovr/ghubber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
42 lines (42 loc) · 1.06 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
{
"parser": "babel-eslint",
"env": {
"browser": true
},
"plugins": [
"react",
"react-native",
"flowtype"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
// disabled for now, anyway will be removed in production build automaticaly
"no-console": "off",
//
"react-native/no-unused-styles": 2,
"react-native/split-platform-components": 2,
"react-native/no-inline-styles": 2,
//
"semi": ["error", "always"],
"object-curly-spacing": ["error", "always"],
"quotes": ["error", "single", { "allowTemplateLiterals": true }],
//
"flowtype/define-flow-type": 1,
"flowtype/use-flow-type": 1
},
"globals": {
"__DEV__": true,
// @todo flow
"Action": true,
"ComponentStyles": true,
"State": true,
"Store": true,
"Dispatch": true,
"Promise": true,
"ThunkAction": true,
"ActionType": true
}
}