-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
53 lines (53 loc) · 1.13 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
45
46
47
48
49
50
51
52
53
{
"ecmaFeatures": {
"modules": true
},
"env": {
"node": true
},
"parser": "babel-eslint",
"rules": {
"comma-dangle": 0,
"no-cond-assign": 1,
"no-dupe-keys": 1,
"no-extra-boolean-cast": 1,
"no-invalid-regexp": 1,
"no-obj-calls": 1,
"no-regex-spaces": 1,
"no-sparse-arrays": 1,
"no-unreachable": 1,
"use-isnan": 1,
"valid-typeof": 1,
"curly": 1,
"dot-notation": 1,
"eqeqeq": [1, "allow-null"],
"no-alert": 1,
"no-caller": 1,
"no-div-regex": 1,
"no-eval": 1,
"no-extend-native": 1,
"no-extra-bind": 1,
"no-fallthrough": 1,
"no-floating-decimal": 1,
"no-implied-eval": 1,
"no-labels": 1,
"no-iterator": 1,
"no-lone-blocks": 1,
"no-new": 1,
"no-new-func": 1,
"no-new-wrappers": 1,
"no-octal": 1,
"no-octal-escape": 1,
"no-proto": 1,
"no-self-compare": 1,
"radix": 1,
"yoda": 1,
"quotes": [2, "single"],
"babel/generator-star-spacing": 1,
"babel/new-cap": 1,
"babel/object-shorthand": 1,
"babel/arrow-parens": 1,
"babel/no-await-in-loop": 1,
},
"plugins": [ "babel" ]
}