This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.style.yml
80 lines (78 loc) · 1.72 KB
/
.eslintrc.style.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
extends: .eslintrc
rules:
import/order: warn
'@typescript-eslint/brace-style':
- warn
- stroustrup
'@typescript-eslint/func-call-spacing': warn
'@typescript-eslint/indent':
- warn
- tab
'@typescript-eslint/member-delimiter-style':
- warn
- multiline:
delimiter: none
requireLast: false
singleline:
delimiter: comma
requireLast: false
'@typescript-eslint/no-extra-parens': warn
'@typescript-eslint/no-extra-semi': warn
'@typescript-eslint/quotes':
- error
- single
'@typescript-eslint/semi':
- warn
- never
'@typescript-eslint/space-before-function-paren': warn
array-element-newline:
- warn
- minItems: 3
arrow-parens:
- warn
- as-needed
capitalized-comments: warn
comma-dangle:
- warn
- arrays: always-multiline
exports: never
functions: never
imports: never
objects: always-multiline
curly:
- warn
- multi
dot-location:
- warn
- property
eol-last: warn
function-paren-newline:
- warn
- consistent
key-spacing: warn
lines-around-comment: warn
lines-between-class-members: warn
multiline-comment-style: warn
new-parens: warn
newline-per-chained-call: warn
no-multi-spaces: warn
no-multiple-empty-lines: warn
no-trailing-spaces:
- warn
- skipBlankLines: true
no-useless-rename: warn
object-curly-spacing: warn
object-property-newline:
- warn
- allowAllPropertiesOnSameLine: true
object-shorthand: warn
padded-blocks: warn
quote-props:
- warn
- as-needed
space-before-blocks: warn
space-before-function-paren: warn
space-in-parens: warn
space-infix-ops: warn
spaced-comment: warn
template-curly-spacing: warn