forked from keplergl/kepler.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
45 lines (45 loc) · 859 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
42
43
44
45
{
"extends": [
"eslint-config-prettier",
"eslint-config-uber-es2015",
"eslint-config-uber-jsx",
"prettier",
"prettier/react"
],
"env": {
"es6": true,
"browser": true,
"node": true
},
"parser": "babel-eslint",
"plugins": [
"babel",
"prettier",
"react"
],
"rules": {
"valid-jsdoc": 0,
"no-var": 0,
"max-len": 0,
"react/no-did-mount-set-state": 0,
"react/no-multi-comp": 0,
"prefer-spread": 1,
"prefer-template": 1,
"quote-props": 1,
"spaced-comment": 1,
"max-params": 0,
"no-multiple-empty-lines": 1,
"no-process-env": 0,
"no-inline-comments": 0,
"no-invalid-this": 0,
"no-unused-expressions": 0,
"camelcase": 0,
"consistent-return": 0,
"comma-dangle": 1
},
"settings": {
"react": {
"version": "detect"
}
}
}