-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
72 lines (72 loc) · 1 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
66
67
68
69
70
71
72
---
extends:
- eslint:recommended
- google
plugins:
- no-async-without-await
env:
es6: true
node: true
parserOptions:
ecmaVersion: 8
sourceType: module
rules:
strict:
- error
- never
new-cap: 0
no-console:
- 1
- allow:
- info
- time
- warn
- error
- timeEnd
quotes:
- error
- single
no-unused-vars:
- error
- args: after-used
eqeqeq: 2
complexity:
- 1
- 10
max-len:
- error
- 160
max-nested-callbacks:
- error
- 5
no-var: 2
comma-dangle:
- error
- never
no-mixed-spaces-and-tabs: 2
quote-props:
- error
- as-needed
require-jsdoc: 0
generator-star-spacing: 0
handle-callback-err: 2
prefer-const: 2
no-const-assign: 2
object-curly-spacing: 0
indent:
- error
- 2
arrow-parens:
- error
- always
padded-blocks: 0
no-invalid-this: 0
no-async-without-await/no-async-without-await:
- error
- allow-throw
valid-jsdoc: 0
space-infix-ops: error
keyword-spacing:
- error
- before: true
after: true