forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 1.01 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
43
44
{
"parser": "babel-eslint",
"rules": {
"no-undef": 2,
"no-unused-vars": [1, {"vars": "all", "args": "none", "varsIgnorePattern": "React|PropTypes|Component"}],
"quotes": 0,
"camelcase": 0,
"eqeqeq": 0,
"key-spacing": 0,
"no-underscore-dangle": 0,
"curly": 0,
"no-use-before-define": 0,
"comma-dangle": 0,
"space-infix-ops": 0,
"no-shadow": 0,
"no-empty": 0,
"no-extra-bind": 0,
"eol-last": 0,
"consistent-return": 0,
"yoda": 0,
"no-multi-spaces": 0,
"no-mixed-spaces-and-tabs": 0,
"no-alert": 0,
"dot-notation": 0,
"space-unary-ops": 0,
"semi": 0,
"no-console": 0,
"global-strict": 0,
"new-cap": 0,
"strict": [2, "never"]
},
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true
},
"globals": {
"angular": false
},
"env": {
"browser": true
}
}