This repository has been archived by the owner on Apr 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.yml
158 lines (158 loc) · 2.29 KB
/
.eslintrc.yml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
env:
es6: true
node: true
parser: '@typescript-eslint/parser'
parserOptions:
project: ./tsconfig.json
plugins:
- '@typescript-eslint'
- import
extends:
- eslint:recommended
- plugin:@typescript-eslint/recommended
- plugin:import/errors
- plugin:import/warnings
- plugin:import/typescript
globals:
Atomics: readonly
SharedArrayBuffer: readonly
rules:
brace-style:
- warn
- 1tbs
curly:
- warn
- all
dot-location:
- warn
- property
dot-notation:
- warn
eqeqeq:
- warn
- smart
indent:
- off
"@typescript-eslint/indent":
- warn
- 4
linebreak-style:
- off
no-console:
- warn
no-trailing-spaces:
- warn
no-else-return:
- error
no-implicit-coercion:
- error
no-multi-spaces:
- warn
- {
ignoreEOLComments: true
}
no-unused-vars:
- warn
no-return-await:
- error
wrap-iife:
- error
- inside
quotes:
- warn
- double
semi:
- warn
- always
yoda:
- warn
- never
block-spacing:
- warn
- always
camelcase:
- warn
- {
properties: always,
ignoreDestructuring: false,
allow: []
}
comma-dangle:
- warn
- never
comma-spacing:
- warn
- {
before: false,
after: true
}
comma-style:
- warn
- last
eol-last:
- warn
- always
func-call-spacing:
- warn
- never
jsx-quotes:
- warn
- prefer-double
key-spacing:
- warn
- {
beforeColon: false,
afterColon: true,
align: value
}
keyword-spacing:
- warn
- {
before: true,
after: true
}
new-parens:
- warn
- always
no-lonely-if:
- warn
no-whitespace-before-property:
- warn
object-curly-spacing:
- warn
- always
array-bracket-spacing:
- warn
- never
space-before-blocks:
- warn
- always
space-before-function-paren:
- warn
- {
anonymous: always,
named: never,
asyncArrow: always
}
space-in-parens:
- warn
- never
spaced-comment:
- warn
- always
switch-colon-spacing:
- warn
- {
before: false,
after: true
}
template-tag-spacing:
- warn
- never
unicode-bom:
- warn
- never
wrap-regex:
- warn
import/order:
- warn