-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
65 lines (65 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
54
55
56
57
58
59
60
61
62
63
64
65
---
env:
node: true
rules:
block-scoped-var: 2
brace-style:
- 2
- 1tbs
-
allowSingleLine: true
camelcase: 0
comma-style:
- 2
- last
consistent-return: 0
curly: 2
eqeqeq: 2
generator-star:
- 2
- start
global-strict: 0
handle-callback-err: 0
new-cap: 0
no-catch-shadow: 2
no-debugger: 1
no-div-regex: 1
no-else-return: 1
no-eq-null: 0
no-extra-parens: 2
no-floating-decimal: 2
no-lonely-if: 1
no-loop-func: 1
no-mixed-requires: 2
no-mixed-spaces-and-tabs:
- 2
- smart-tabs
no-multi-spaces: 2
no-nested-ternary: 1
no-new-require: 2
no-path-concat: 2
no-process-exit: 0
no-reserved-keys: 2
no-shadow: 0
no-trailing-spaces: 2
no-undefined: 0
no-underscore-dangle: 0
no-wrap-func: 1
quotes: 0
radix: 2
semi:
- 2
- never
space-after-keywords:
- 2
- always
space-before-blocks:
- 2
- always
space-before-function-parentheses:
- 2
- always
strict: 0
wrap-iife:
- 2
- inside