-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
233 lines (225 loc) · 6.24 KB
/
index.js
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
module.exports = {
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'eslint-plugin-tsdoc',
'eslint-plugin-jsdoc',
'eslint-plugin-import'
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:import/typescript',
],
rules: {
'no-irregular-whitespace': 'error',
'quotes': [ 'error', 'single' ],
'no-unused-vars': [ 'off' ],
'eqeqeq': [ 'error' ],
'no-throw-literal': [ 'error' ],
'no-shadow': [ 'off' ],
'no-console': [ 'warn' ],
'no-debugger': [ 'error' ],
'no-alert': [ 'error' ],
'semi-spacing': [ 'warn', {
before: false,
after: true
} ],
'no-multi-spaces': [ 'warn' ],
'space-unary-ops': [ 'warn', {
words: true,
nonwords: false,
overrides: {
'!': true,
'!!': true
}
} ],
'@typescript-eslint/adjacent-overload-signatures': [ 'warn' ],
'@typescript-eslint/await-thenable': [ 'warn' ],
'@typescript-eslint/ban-types': [
'error',
{
extendDefaults: true,
types: {
object: false
}
}
],
'@typescript-eslint/consistent-type-assertions': [ 'error' ],
'@typescript-eslint/consistent-type-definitions': [ 'error' ],
'@typescript-eslint/explicit-member-accessibility': [
'error',
{
'accessibility': 'explicit',
'overrides': {
'properties': 'off'
}
}
],
'@typescript-eslint/indent': [ 'error', 'tab', {
SwitchCase: 1,
ignoredNodes: [
'TSTypeLiteral',
'TSUnionType'
]
} ],
'@typescript-eslint/member-delimiter-style': [
'error',
{
'multiline': {
'delimiter': 'semi',
'requireLast': true
},
'singleline': {
'delimiter': 'semi',
'requireLast': false
}
}
],
'@typescript-eslint/member-ordering': [ 'off' ],
'@typescript-eslint/no-array-constructor': [ 'warn' ],
'@typescript-eslint/no-empty-function': [ 'warn' ],
'@typescript-eslint/no-empty-interface': [ 'warn' ],
'@typescript-eslint/no-explicit-any': [ 'off' ],
'@typescript-eslint/no-misused-new': [ 'error' ],
'@typescript-eslint/no-namespace': [ 'error' ],
'@typescript-eslint/no-non-null-assertion': [ 'error' ],
'@typescript-eslint/no-parameter-properties': [ 'error' ],
'@typescript-eslint/no-shadow': [ 'warn' ],
'@typescript-eslint/no-var-requires': [ 'error' ],
'@typescript-eslint/no-unnecessary-type-assertion': [ 'warn' ],
'@typescript-eslint/no-unused-vars': [ 'warn', {
'vars': 'all',
'args': 'after-used',
'ignoreRestSiblings': false
} ],
'@typescript-eslint/prefer-function-type': [ 'error' ],
'@typescript-eslint/prefer-namespace-keyword': [ 'error' ],
'@typescript-eslint/quotes': [
'error',
'single',
{
'avoidEscape': true
}
],
'@typescript-eslint/semi': [ 'error', 'always' ],
'@typescript-eslint/triple-slash-reference': [ 'error' ],
'@typescript-eslint/unified-signatures': [ 'off' ],
'@typescript-eslint/no-floating-promises': [ 'error' ],
'prefer-const': [ 'warn' ],
'no-var': [ 'error' ],
'no-param-reassign': [ 'warn' ],
'no-multi-assign': [ 'warn' ],
'no-unneeded-ternary': [ 'warn' ],
'no-mixed-operators': [ 'warn' ],
'nonblock-statement-body-position': [ 'warn' ],
'no-extra-semi': [ 'off' ],
'@typescript-eslint/no-extra-semi': [ 'error' ],
'brace-style': [ 'off' ],
'@typescript-eslint/brace-style': [ 'warn', '1tbs' ],
'comma-spacing': [ 'off' ],
'@typescript-eslint/comma-spacing': [ 'warn', {
before: false,
after: true
} ],
'comma-style': [ 'warn', 'last' ],
'func-call-spacing': [ 'off' ],
'@typescript-eslint/func-call-spacing': [ 'warn' ],
'space-before-function-paren': [ 'off' ],
'@typescript-eslint/space-before-function-paren': [ 'warn', {
'anonymous': 'never',
'named': 'never',
'asyncArrow': 'always'
} ],
'quote-props': [ 'warn', 'as-needed' ],
'arrow-spacing': [ 'warn', {
before: true,
after: true
} ],
'arrow-parens': [ 'warn', 'as-needed' ],
'generator-star-spacing': [ 'warn', {
before: true,
after: false
} ],
'dot-notation': [ 'warn' ],
'spaced-comment': [ 'warn' ],
'space-before-blocks': [ 'warn' ],
'keyword-spacing': [ 'warn', {
before: true,
after: true,
overrides: {
'if': { after: false },
'for': { after: false },
'while': { after: false },
'switch': { after: false },
'catch': { after: false },
}
} ],
'space-infix-ops': [ 'warn' ],
'padded-blocks': [ 'warn', 'never' ],
'space-in-parens': [ 'warn', 'never' ],
'no-multiple-empty-lines': [ 'warn' ],
'array-bracket-spacing': [ 'warn', 'always' ],
'object-curly-spacing': [ 'warn', 'always' ],
'block-spacing': [ 'warn', 'always' ],
'computed-property-spacing': [ 'warn', 'never' ],
'key-spacing': [ 'warn', {
beforeColon: false,
afterColon: true,
mode: 'strict'
} ],
'tsdoc/syntax': [ 'warn' ],
'jsdoc/check-alignment': [ 'warn' ],
'jsdoc/check-param-names': [ 'warn', {
checkDestructured: false
} ],
'jsdoc/check-syntax': [ 'warn' ],
'jsdoc/empty-tags': [ 'warn' ],
'jsdoc/newline-after-description': [ 'warn' ],
'jsdoc/no-types': [ 'warn' ],
'jsdoc/require-description': [ 'warn', {
contexts: [ 'any' ]
} ],
'jsdoc/require-jsdoc': [ 'warn' ],
'jsdoc/require-param': [ 'warn', {
checkDestructured: false
} ],
'jsdoc/require-param-description': [ 'warn' ],
'jsdoc/require-param-name': [ 'warn' ],
'jsdoc/require-returns': [ 'warn' ],
'jsdoc/require-returns-check': [ 'warn' ],
'jsdoc/require-returns-description': [ 'warn' ],
'jsdoc/check-tag-names': [ 'error', {
definedTags: [ 'remarks', 'typeParam' ]
} ],
'import/extensions': [ 'error' ],
'import/first': [ 'warn' ],
'import/no-self-import': [ 'error' ],
'import/newline-after-import': [ 'warn' ],
'import/no-dynamic-require': [ 'warn' ],
'import/no-useless-path-segments': [ 'warn' ],
'import/no-default-export': [ 'warn' ],
'import/no-namespace': [ 'warn' ],
'import/no-duplicates': [ 'warn' ],
'import/order': [ 'warn', {
'newlines-between': 'always',
groups: [ 'builtin', 'external', 'internal', 'parent', 'sibling', 'index' ],
pathGroups: [
{
pattern: '@thingbound/**',
group: 'internal'
}
],
pathGroupsExcludedImportTypes: [ 'builtin' ],
alphabetize: {
order: 'asc',
caseInsensitive: true
}
} ],
},
settings: {
jsdoc: {
mode: 'typescript'
}
}
}