forked from nitaliano/react-native-mapbox-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 1012 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
40
41
{
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": [
"react",
"react-native"
],
"globals": { },
"rules": {
"camelcase": [0],
"comma-spacing": [0],
"consistent-return": [0],
"curly": [0],
"eol-last": [0],
"key-spacing": [0],
"new-cap": [0],
"no-mixed-requires": [0],
"no-redeclare": [2],
"no-underscore-dangle": [0],
"no-use-before-define": [0],
"quotes": [2, "single"],
"react/jsx-uses-react": [2],
"react/jsx-uses-vars": [2],
"react/no-multi-comp": 2,
"react/no-unknown-property": [2],
"react/prop-types": 2,
"react/require-extension": [2, { "extensions": [".js", ".jsx"] }],
"react/wrap-multilines": [2],
"react-native/no-unused-styles": 2,
"react-native/split-platform-components": 2,
"react-native/no-inline-styles": 2,
"react-native/no-color-literals": 2,
"strict": [0],
"valid-typeof": 2
}
}