-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc.yml
More file actions
101 lines (97 loc) · 1.15 KB
/
.eslintrc.yml
File metadata and controls
101 lines (97 loc) · 1.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
parser: babel-eslint
ecmaFeatures:
modules: true
env:
es6: true
browser: true
node: true
rules:
strict: 0
no-unused-vars:
- 0
indent:
- 2
- tab
quotes:
- 2
- single
linebreak-style:
- 2
- unix
semi:
- 2
- always
no-console:
- 0
complexity:
- 2
- 5
max-depth:
- 2
- 3
max-len:
- 2
- 120
- 4
- ignoreComments: true
max-params:
- 2
- 4
max-statements:
- 2
- 20
require-jsdoc:
- 2
no-var:
- 2
object-shorthand:
- 2
- "always"
prefer-arrow-callback:
- 2
prefer-const:
- 2
prefer-spread:
- 2
prefer-template:
- 2
no-use-before-define:
- 2
block-scoped-var:
- 2
curly:
- 2
eqeqeq:
- 2
- "smart"
no-alert:
- 2
no-else-return:
- 2
no-labels:
- 2
no-lone-blocks:
- 2
no-loop-func:
- 2
no-new-wrappers:
- 2
no-param-reassign:
- 2
no-proto:
- 2
no-return-assign:
- 2
no-sequences:
- 2
no-throw-literal:
- 2
no-useless-call:
- 2
no-useless-concat:
- 2
no-with:
- 2
radix:
- 2
extends: 'eslint:recommended'