forked from keplergl/kepler.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
53 lines (53 loc) · 994 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
46
47
48
49
50
51
52
53
{
"extends": [
"uber-jsx",
"uber-es2015",
"prettier",
"plugin:prettier/recommended",
"prettier/react"
],
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"globals": {
"page": true,
"browser": true,
"context": true,
"jestPuppeteer": 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,
"prettier/prettier": "error",
"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"
}
}
}