-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yaml
441 lines (421 loc) · 11.2 KB
/
.eslintrc.yaml
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
# #############################################################################
# Eslint config.
# #############################################################################
#
# @description ESLint is a tool for identifying and
# reporting on patterns found in ECMAScript/JavaScript code,
# with the goal of making code more consistent and avoiding bugs.
#
# @see https://eslint.org/
# @see https://eslint.org/docs/latest/
#
# #############################################################################
---
# #############################################################################
# GENERAL.
# #############################################################################
root: true
env:
node: true
browser: true
es2022: true
parserOptions:
ecmaVersion: 2023
sourceType: module
allowImportExportEverywhere: true
plugins:
- html
- align-import
- align-assignments
- promise
- jsonc
- yaml
- canonical
extends:
- eslint:recommended
- plugin:promise/recommended
- plugin:jsdoc/recommended
- plugin:import/recommended
# #############################################################################
# RULES.
# @see https://eslint.org/docs/latest/rules/
# #############################################################################
rules:
camelcase: warn
key-spacing:
- error
- multiLine:
beforeColon: true
afterColon: true
align:
beforeColon: true
afterColon: true
on: colon
switch-colon-spacing:
- error
- after: true
before: true
comma-dangle:
- error
- always-multiline
comma-spacing:
- error
- after: true
computed-property-spacing:
- error
- always
no-multiple-empty-lines:
- error
- max: 1
maxEOF: 1
maxBOF: 1
padded-blocks:
- error
- always
one-var:
- error
- var: always
let: always
const: never
vars-on-top: warn
space-in-parens:
- error
- always
object-curly-newline:
- error
- multiline: true
minProperties: 2
# consistent: true
# - ObjectPattern:
# multiline: true
# ObjectExpression:
# minProperties: 1
# ImportDeclaration:
# multiline: true
# minProperties: 2
object-property-newline:
- error
object-curly-spacing:
- error
- always
array-element-newline:
- error
# - multiline: true
- minItems: 3
array-bracket-newline:
- error
# - multiline: true
- minItems: 3
array-bracket-spacing:
- error
- always
linebreak-style:
- error
- unix
semi:
- error
- never
operator-linebreak:
- error
- before
arrow-parens:
- error
- as-needed
default-case-last: error
indent:
- error
- tab
- SwitchCase: 1
default-case: error
eol-last:
- error
- always
no-prototype-builtins: off
no-inline-comments: off
space-infix-ops: error
no-multi-spaces:
- error
- exceptions:
ImportDeclaration: true
VariableDeclarator: true
AssignmentExpression: true
# IMPORT.
# #############################################################################
import/no-unresolved: off
import/newline-after-import:
- error
# https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/order.md
import/order:
- error
- groups:
- [
"builtin", "external"
]
- [
"internal", "parent", "sibling", "index", "object",
]
- [
"type"
]
pathGroups: []
pathGroupsExcludedImportTypes: []
alphabetize:
order: asc
caseInsensitive: true
newlines-between: "always"
warnOnUnassignedImports: true
# ALIGN.
# #############################################################################
align-import/align-import: error
align-import/trim-import: error
align-assignments/align-assignments:
- error
- requiresOnly: false
canonical/import-specifier-newline: error
canonical/export-specifier-newline: error
# #############################################################################
# IGNORE FILES.
#
# @description Specifies which files and directories should be ignored by ESLint,
# helping to exclude specific files from linting.
# @see https://eslint.org/docs/user-guide/configuring/ignoring-code
#
# #############################################################################
ignorePatterns:
# module folders
- 'vendor/'
- '**/vendor/*'
- '**/vendor/**'
- '**/node_modules/*'
# static folders
- '**/static/*'
- '**/public/*'
# dist folders
- 'dist/*'
- '**/dist/*'
- '**/build/*'
- '**/.svelte-kit/*'
# others
- '**/*.timestamp-*'
- '**/*.d.ts'
- 'packages/_config/*'
- '**/__temp__/*'
- '**/__cache__/*'
# md
- "**/LICENSE"
# project
- "docs/partials/**"
- "docs/index.md"
- '!.dev'
- '!.utils'
# #############################################################################
# CONFIG FOR SPECIF FILES.
# #############################################################################
overrides:
# ###########################################################################
# JS & TS config.
# ###########################################################################
- files:
- '**/*.js'
- '**/*.mjs'
- '**/*.cjs'
- '**/*.jxs'
- '**/*.ts'
- '**/*.mts'
- '**/*.cts'
- '**/*.txs'
rules:
quotes:
- error
- single
# ###########################################################################
# COMMON JS config.
# ###########################################################################
- files:
- '**/*.cjs'
env:
node: true
# ###########################################################################
# JSDOC config.
# @see https://github.com/gajus/eslint-plugin-jsdoc
# ###########################################################################
- files:
- '**/*.js'
- '**/*.mjs'
- '**/*.cjs'
- '**/*.jxs'
- '**/*.ts'
- '**/*.mts'
- '**/*.cts'
- '**/*.txs'
rules:
# jsdoc/check-examples:
# - error # at the moment is not available in eslint8
jsdoc/sort-tags:
- error
jsdoc/require-jsdoc:
- error
- require: {}
jsdoc/require-description:
- error
- descriptionStyle: body
jsdoc/require-hyphen-before-param-description:
- error
- always
- tags:
returns: always
jsdoc/check-indentation:
- error
jsdoc/check-line-alignment:
- error
- always
- tags:
- version
- description
- since
- param
- returns
jsdoc/require-description-complete-sentence:
- error
- tags:
- param
- returns
- description
jsdoc/tag-lines:
- error
- never
- startLines: 1
endLines: 0
tags:
# see:
# count: 1
# lines: always
example:
count: 1
lines: always
version:
count: 1
lines: always
author:
count: 1
lines: always
jsdoc/require-example:
- error
# jsdoc/check-syntax:
# - error
settings:
jsdoc:
tagNamePreference:
experimental: experimental
beta: beta
# ###########################################################################
# TYPESCRIPT config.
# @see https://typescript-eslint.io
# ###########################################################################
- files:
- '**/*.ts'
plugins:
- '@typescript-eslint'
extends:
- eslint:recommended
- plugin:@typescript-eslint/eslint-recommended
- plugin:@typescript-eslint/recommended
parser: '@typescript-eslint/parser'
rules:
'@typescript-eslint/consistent-type-imports':
- error
- prefer: type-imports
disallowTypeAnnotations: false
'@typescript-eslint/no-unused-vars':
- error
- args: all
argsIgnorePattern: "^_"
caughtErrors: all
caughtErrorsIgnorePattern: "^_"
destructuredArrayIgnorePattern: "^_"
varsIgnorePattern: "^_"
ignoreRestSiblings: true
'@typescript-eslint/ban-ts-comment': off
# ###########################################################################
# YAML config.
# @see https://www.npmjs.com/package/eslint-plugin-yaml
# ###########################################################################
- files:
- '**/*.yaml'
- '**/*.yml'
extends:
- plugin:yaml/recommended
# ###########################################################################
# MARKDOWN config.
# @see https://github.com/paweldrozd/eslint-plugin-markdownlint
# @see https://github.com/DavidAnson/markdownlint
# @see https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml
# ###########################################################################
- files:
- '**/*.md'
parser: eslint-plugin-markdownlint/parser
extends:
- plugin:markdownlint/recommended
rules:
# Line length | MD013/line-length
markdownlint/md013: "off"
# Inline HTML | MD033/no-inline-html
markdownlint/md033: "off"
# Multiple headings with the same content | MD024/no-duplicate-heading/no-duplicate-header
markdownlint/md024: "off"
# ###########################################################################
# JSON config.
# @see https://ota-meshi.github.io/eslint-plugin-jsonc/rules/
# ###########################################################################
- files:
- '**/*.json'
- '**/*.json5'
- '**/*.jsonc'
parser: jsonc-eslint-parser
rules:
strict: error
jsonc/auto: off
jsonc/no-comments: off
jsonc/indent:
- error
- tab
jsonc/comma-style:
- error
- last
jsonc/array-bracket-newline:
- error
- always
jsonc/comma-dangle:
- error
- never
jsonc/key-spacing:
- error
- beforeColon: false
afterColon: true
mode: strict
jsonc/object-curly-newline:
- error
- multiline: true
minProperties: 1
jsonc/quotes:
- error
- double
- avoidEscape: false
# ###########################################################################
# PACKAGE JSON config.
# @see https://www.npmjs.com/package/eslint-plugin-package-json
# @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/tree/main/docs/rules
# ###########################################################################
- files:
- "package.json"
extends:
- "plugin:package-json/recommended"
parser: "jsonc-eslint-parser"
plugins:
- "package-json"
rules:
'package-json/valid-repository-directory': off
package-json/sort-collections:
- error
- ["devDependencies", "dependencies", "peerDependencies", "config"]
# #############################################################################