forked from nitaliano/react-native-mapbox-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
34 lines (34 loc) · 777 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
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": [
"react"
],
"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-quotes": [2, "single", "avoid-escape"],
"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],
"strict": [0],
"valid-typeof": 2
}
}