-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
63 lines (63 loc) · 1.31 KB
/
.eslintrc.json
File metadata and controls
63 lines (63 loc) · 1.31 KB
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
54
55
56
57
58
59
60
61
62
63
{
"extends": "standard",
"plugins": [
"standard",
"promise"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"indent": [2, 4],
"quotes": [2, "single"],
"space-before-function-paren": 1,
"semi" :[2, "always"],
"comma-dangle": 1,
"space-before-function-paren": 1,
"no-var": 1,
"no-cond-assign": 1,
"no-console": 1,
"no-constant-condition": 1,
"no-dupe-keys": 1,
"no-empty": 1,
"no-empty-character-class": 1,
"no-extra-boolean-cast": 1,
"no-extra-semi": 1,
"no-func-assign": 1,
"no-inner-declarations": 1,
"no-invalid-regexp": 1,
"no-irregular-whitespace": 1,
"no-unreachable": 1,
"use-isnan": 1,
"valid-typeof": 1,
"no-implied-eval": 1,
"curly": 1,
"consistent-return": 1,
"default-case": 1,
"dot-notation": 1,
"eqeqeq": 1,
"guard-for-in": 1,
"no-alert": 1,
"no-undefined": 0,
"no-unused-vars": 1,
"no-use-before-define": 1,
"no-mixed-requires": 1,
"camelcase": 1,
"comma-spacing": 1,
"comma-style": 1,
"eol-last": 1,
"new-cap": 1,
"no-mixed-spaces-and-tabs": 1,
"no-multiple-empty-lines": 1,
"semi-spacing": 1,
"no-spaced-func": 1,
"no-trailing-spaces": 1,
"operator-assignment": 1,
"keyword-spacing": 1,
"space-before-blocks": 1,
"object-curly-spacing": 1,
"space-infix-ops": 1
}
}