forked from izaakschroeder/s3-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
42 lines (42 loc) · 913 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
{
"env": {
"node": true
},
"rules": {
"brace-style": [2, "1tbs"],
"default-case": 2,
"camelcase": 2,
"complexity": [2, 10],
"consistent-this": [2, "self"],
"curly": 2,
"dot-notation": 2,
"eol-last": 2,
"func-names": 2,
"func-style": [2, "declaration"],
"guard-for-in": 2,
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"new-cap": 0,
"no-floating-decimal": 2,
"no-lonely-if": 2,
"no-mixed-spaces-and-tabs": [2, true],
"no-multiple-empty-lines": 2,
"no-nested-ternary": 2,
"no-spaced-func": 2,
"no-use-before-define": 2,
"no-undefined": 2,
"no-underscore-dangle": 0,
"indent": [2, "tab"],
"quotes": [2, "single"],
"radix": 2,
"space-after-keywords": [2, "always"],
"spaced-line-comment": 2,
"strict": [2, "never"],
"valid-jsdoc": [2, {
"prefer": {
"return": "returns"
}
}],
"wrap-iife": 2,
"yoda": [0, "always"]
}
}