forked from izaakschroeder/vinyl-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
43 lines (41 loc) · 844 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
{
"env": {
"node": true,
"es2021": true
},
"extends": "eslint:recommended",
"rules": {
"brace-style": [2, "1tbs"],
"default-case": 2,
"camelcase": 2,
"consistent-this": [2, "self"],
"dot-notation": 0,
"eol-last": 2,
"func-names": 2,
"func-style": [2, "declaration"],
"guard-for-in": 2,
"indent": [2, "tab"],
"new-cap": 0,
"no-floating-decimal": 2,
"no-lonely-if": 2,
"no-mixed-spaces-and-tabs": [2, true],
"no-nested-ternary": 2,
"no-use-before-define": 2,
"no-undefined": 2,
"no-underscore-dangle": 0,
"quotes": [2, "single"],
"radix": 2,
"keyword-spacing":[2, {"before":true, "after":true}],
"valid-jsdoc": [2, {
"prefer": {
"return": "returns"
}
}],
"wrap-iife": 2,
"yoda": [0, "always"]
},
"globals": {
"console": false,
"Promise": true
}
}