@ethang/eslint-config 20.1.1 → 21.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/eslint.config.js CHANGED
@@ -1,1307 +1,2 @@
1
- import { a as e, b as o } from "./chunk-D5NRNSPH.js";
2
- import { fixupPluginRules as s } from "@eslint/compat";
3
- import t from "eslint-plugin-jsx-a11y";
4
- import i from "eslint-plugin-barrel-files";
5
- import a from "eslint-plugin-compat";
6
- import c from "@cspell/eslint-plugin";
7
- import l from "eslint-plugin-depend";
8
- import r from "@eslint/json";
9
- import p from "eslint-plugin-lodash";
10
- import f from "@eslint/markdown";
11
- import u from "eslint-plugin-n";
12
- import d from "eslint-plugin-perfectionist";
13
- import y from "eslint-plugin-sonarjs";
14
- import m from "@stylistic/eslint-plugin";
15
- import g from "@stylistic/eslint-plugin-ts";
16
- import b from "eslint-plugin-tailwindcss";
17
- import h from "@tanstack/eslint-plugin-query";
18
- import w from "@tanstack/eslint-plugin-router";
19
- import n from "typescript-eslint";
20
- import x from "eslint-plugin-unicorn";
21
- var L = n.config(
22
- {
23
- files: ["**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts}"],
24
- ignores: e,
25
- languageOptions: o,
26
- settings: { react: { version: "19.0.0" } },
27
- plugins: {
28
- depend: l,
29
- barrel: i,
30
- compat: a,
31
- n: u,
32
- "@typescript-eslint": n.plugin,
33
- unicorn: x,
34
- lodash: p,
35
- sonar: s(y),
36
- tailwind: b,
37
- stylistic: m,
38
- "stylistic-ts": g,
39
- perfectionist: d,
40
- "@tanstack/query": h,
41
- "@tanstack/router": w,
42
- a11y: t,
43
- cspell: c,
44
- },
45
- rules: {
46
- "depend/ban-dependencies": ["error", { allowed: ["lodash", "fs-extra"] }],
47
- "barrel/avoid-barrel-files": "error",
48
- "barrel/avoid-importing-barrel-files": "off",
49
- "barrel/avoid-namespace-import": "error",
50
- "barrel/avoid-re-export-all": "error",
51
- "compat/compat": "error",
52
- "accessor-pairs": "error",
53
- "array-callback-return": "error",
54
- "arrow-body-style": ["error", "always"],
55
- "block-scoped-var": "error",
56
- camelcase: "off",
57
- "capitalized-comments": "off",
58
- "class-methods-use-this": "off",
59
- complexity: "off",
60
- "consistent-return": "off",
61
- "consistent-this": "off",
62
- "constructor-super": "error",
63
- curly: "off",
64
- "default-case": "off",
65
- "default-case-last": "off",
66
- "default-param-last": "off",
67
- "dot-notation": "off",
68
- eqeqeq: "error",
69
- "for-direction": "error",
70
- "func-name-matching": "error",
71
- "func-names": "off",
72
- "func-style": ["error", "declaration", { allowArrowFunctions: !0 }],
73
- "getter-return": "error",
74
- "grouped-accessor-pairs": "error",
75
- "guard-for-in": "error",
76
- "id-denylist": "off",
77
- "id-length": "off",
78
- "id-match": "off",
79
- "init-declarations": "off",
80
- "logical-assignment-operators": "error",
81
- "max-classes-per-file": "error",
82
- "max-depth": "error",
83
- "max-lines": "off",
84
- "max-lines-per-function": "off",
85
- "max-nested-callbacks": "error",
86
- "max-params": "off",
87
- "max-statements": "off",
88
- "new-cap": "off",
89
- "no-alert": "error",
90
- "no-array-constructor": "off",
91
- "no-async-promise-executor": "error",
92
- "no-await-in-loop": "error",
93
- "no-bitwise": "error",
94
- "no-caller": "error",
95
- "no-case-declarations": "error",
96
- "no-class-assign": "error",
97
- "no-compare-neg-zero": "error",
98
- "no-cond-assign": "error",
99
- "no-console": "error",
100
- "no-const-assign": "error",
101
- "no-constant-binary-expression": "error",
102
- "no-constant-condition": "error",
103
- "no-constructor-return": "error",
104
- "no-continue": "error",
105
- "no-control-regex": "error",
106
- "no-debugger": "error",
107
- "no-delete-var": "error",
108
- "no-div-regex": "error",
109
- "no-dupe-args": "error",
110
- "no-dupe-class-members": "off",
111
- "no-dupe-else-if": "error",
112
- "no-dupe-keys": "error",
113
- "no-duplicate-case": "error",
114
- "no-duplicate-imports": "error",
115
- "no-else-return": "error",
116
- "no-empty": "error",
117
- "no-empty-character-class": "error",
118
- "no-empty-function": "off",
119
- "no-empty-pattern": "error",
120
- "no-empty-static-block": "error",
121
- "no-eq-null": "error",
122
- "no-eval": "error",
123
- "no-ex-assign": "error",
124
- "no-extend-native": "error",
125
- "no-extra-bind": "error",
126
- "no-extra-boolean-cast": "error",
127
- "no-extra-label": "error",
128
- "no-fallthrough": "error",
129
- "no-func-assign": "error",
130
- "no-global-assign": "error",
131
- "no-implicit-coercion": "error",
132
- "no-implicit-globals": "off",
133
- "no-implied-eval": "off",
134
- "no-import-assign": "error",
135
- "no-inline-comments": "off",
136
- "no-inner-declarations": "error",
137
- "no-invalid-regexp": "error",
138
- "no-invalid-this": "error",
139
- "no-irregular-whitespace": "error",
140
- "no-iterator": "error",
141
- "no-label-var": "error",
142
- "no-labels": "error",
143
- "no-lone-blocks": "error",
144
- "no-lonely-if": "error",
145
- "no-loop-func": "error",
146
- "no-loss-of-precision": "error",
147
- "no-magic-numbers": "off",
148
- "no-misleading-character-class": "error",
149
- "no-multi-assign": "error",
150
- "no-multi-str": "error",
151
- "no-negated-condition": "error",
152
- "no-nested-ternary": "error",
153
- "no-new": "error",
154
- "no-new-func": "error",
155
- "no-new-native-nonconstructor": "error",
156
- "no-new-wrappers": "error",
157
- "no-nonoctal-decimal-escape": "error",
158
- "no-obj-calls": "error",
159
- "no-object-constructor": "error",
160
- "no-octal": "error",
161
- "no-octal-escape": "error",
162
- "no-param-reassign": "error",
163
- "no-plusplus": "error",
164
- "no-promise-executor-return": "error",
165
- "no-proto": "error",
166
- "no-prototype-builtins": "error",
167
- "no-redeclare": "off",
168
- "no-regex-spaces": "error",
169
- "no-restricted-exports": "off",
170
- "no-restricted-globals": "off",
171
- "no-restricted-imports": "off",
172
- "no-restricted-properties": "off",
173
- "no-restricted-syntax": "off",
174
- "no-return-assign": "error",
175
- "no-script-url": "error",
176
- "no-self-assign": "error",
177
- "no-self-compare": "error",
178
- "no-sequences": "error",
179
- "no-setter-return": "error",
180
- "no-shadow": "off",
181
- "no-shadow-restricted-names": "error",
182
- "no-sparse-arrays": "error",
183
- "no-template-curly-in-string": "off",
184
- "no-ternary": "off",
185
- "no-this-before-super": "error",
186
- "no-throw-literal": "off",
187
- "no-undef": "off",
188
- "no-undef-init": "error",
189
- "no-undefined": "off",
190
- "no-underscore-dangle": "off",
191
- "no-unexpected-multiline": "off",
192
- "no-unmodified-loop-condition": "error",
193
- "no-unneeded-ternary": "error",
194
- "no-unreachable": "error",
195
- "no-unreachable-loop": "error",
196
- "no-unsafe-finally": "error",
197
- "no-unsafe-negation": "error",
198
- "no-unsafe-optional-chaining": [
199
- "error",
200
- { disallowArithmeticOperators: !0 },
201
- ],
202
- "no-unused-expressions": "off",
203
- "no-unused-labels": "error",
204
- "no-unused-private-class-members": "error",
205
- "no-unused-vars": "off",
206
- "no-use-before-define": "off",
207
- "no-useless-assignment": "off",
208
- "no-useless-backreference": "error",
209
- "no-useless-call": "error",
210
- "no-useless-catch": "error",
211
- "no-useless-computed-key": "error",
212
- "no-useless-concat": "error",
213
- "no-useless-constructor": "off",
214
- "no-useless-escape": "error",
215
- "no-useless-rename": "error",
216
- "no-useless-return": "error",
217
- "no-var": "error",
218
- "no-void": "error",
219
- "no-warning-comments": "off",
220
- "no-with": "error",
221
- "object-shorthand": "error",
222
- "one-var": "off",
223
- "operator-assignment": "error",
224
- "prefer-arrow-callback": "error",
225
- "prefer-const": "error",
226
- "prefer-destructuring": "off",
227
- "prefer-exponentiation-operator": "error",
228
- "prefer-named-capture-group": "error",
229
- "prefer-numeric-literals": "error",
230
- "prefer-object-has-own": "error",
231
- "prefer-object-spread": "error",
232
- "prefer-promise-reject-errors": "off",
233
- "prefer-regex-literals": "error",
234
- "prefer-rest-params": "error",
235
- "prefer-spread": "error",
236
- "prefer-template": "error",
237
- radix: "error",
238
- "require-atomic-updates": "error",
239
- "require-await": "off",
240
- "require-unicode-regexp": "error",
241
- "require-yield": "error",
242
- "sort-imports": "off",
243
- "sort-keys": "off",
244
- "sort-vars": "error",
245
- strict: "error",
246
- "symbol-description": "error",
247
- "unicode-bom": "error",
248
- "use-isnan": "error",
249
- "valid-typeof": "error",
250
- "vars-on-top": "error",
251
- yoda: ["error", "always"],
252
- "n/callback-return": "off",
253
- "n/exports-style": ["error", "exports"],
254
- "n/file-extension-in-import": "off",
255
- "n/global-require": "off",
256
- "n/handle-callback-err": "error",
257
- "n/hashbang": "off",
258
- "n/no-callback-literal": "off",
259
- "n/no-deprecated-api": "error",
260
- "n/no-exports-assign": "error",
261
- "n/no-extraneous-import": "error",
262
- "n/no-extraneous-require": "error",
263
- "n/no-missing-import": "off",
264
- "n/no-missing-require": "error",
265
- "n/no-mixed-requires": "off",
266
- "n/no-new-require": "off",
267
- "n/no-path-concat": "error",
268
- "n/no-process-env": "off",
269
- "n/no-process-exit": "off",
270
- "n/no-restricted-import": "off",
271
- "n/no-restricted-require": "off",
272
- "n/no-sync": "off",
273
- "n/no-unpublished-bin": "error",
274
- "n/no-unpublished-import": "off",
275
- "n/no-unpublished-require": "off",
276
- "n/no-unsupported-features/es-builtins": "error",
277
- "n/no-unsupported-features/es-syntax": "error",
278
- "n/no-unsupported-features/node-builtins": "error",
279
- "n/prefer-global/buffer": "error",
280
- "n/prefer-global/console": "error",
281
- "n/prefer-global/process": "error",
282
- "n/prefer-global/text-decoder": "error",
283
- "n/prefer-global/text-encoder": "error",
284
- "n/prefer-global/url": "error",
285
- "n/prefer-global/url-search-params": "error",
286
- "n/prefer-node-protocol": "error",
287
- "n/prefer-promises/dns": "off",
288
- "n/prefer-promises/fs": "off",
289
- "n/process-exit-as-throw": "off",
290
- "@typescript-eslint/adjacent-overload-signatures": "off",
291
- "@typescript-eslint/array-type": "error",
292
- "@typescript-eslint/await-thenable": "error",
293
- "@typescript-eslint/ban-ts-comment": "error",
294
- "@typescript-eslint/ban-tslint-comment": "error",
295
- "@typescript-eslint/class-literal-property-style": "error",
296
- "@typescript-eslint/class-methods-use-this": "off",
297
- "@typescript-eslint/consistent-generic-constructors": "error",
298
- "@typescript-eslint/consistent-indexed-object-style": "error",
299
- "@typescript-eslint/consistent-return": "off",
300
- "@typescript-eslint/consistent-type-assertions": "error",
301
- "@typescript-eslint/consistent-type-definitions": ["error", "type"],
302
- "@typescript-eslint/consistent-type-exports": "error",
303
- "@typescript-eslint/consistent-type-imports": [
304
- "error",
305
- { fixStyle: "inline-type-imports" },
306
- ],
307
- "@typescript-eslint/default-param-last": "error",
308
- "@typescript-eslint/dot-notation": "error",
309
- "@typescript-eslint/explicit-function-return-type": "off",
310
- "@typescript-eslint/explicit-member-accessibility": "error",
311
- "@typescript-eslint/explicit-module-boundary-types": "off",
312
- "@typescript-eslint/init-declarations": "off",
313
- "@typescript-eslint/max-params": "off",
314
- "@typescript-eslint/member-ordering": "off",
315
- "@typescript-eslint/method-signature-style": "error",
316
- "@typescript-eslint/naming-convention": "off",
317
- "@typescript-eslint/no-array-constructor": "error",
318
- "@typescript-eslint/no-array-delete": "error",
319
- "@typescript-eslint/no-base-to-string": "error",
320
- "@typescript-eslint/no-confusing-non-null-assertion": "error",
321
- "@typescript-eslint/no-confusing-void-expression": "error",
322
- "@typescript-eslint/no-deprecated": "error",
323
- "@typescript-eslint/no-dupe-class-members": "off",
324
- "@typescript-eslint/no-duplicate-enum-values": "error",
325
- "@typescript-eslint/no-duplicate-type-constituents": "error",
326
- "@typescript-eslint/no-dynamic-delete": "error",
327
- "@typescript-eslint/no-empty-function": "error",
328
- "@typescript-eslint/no-empty-object-type": "error",
329
- "@typescript-eslint/no-explicit-any": "error",
330
- "@typescript-eslint/no-extra-non-null-assertion": "error",
331
- "@typescript-eslint/no-extraneous-class": "error",
332
- "@typescript-eslint/no-floating-promises": "error",
333
- "@typescript-eslint/no-for-in-array": "error",
334
- "@typescript-eslint/no-implied-eval": "error",
335
- "@typescript-eslint/no-import-type-side-effects": "error",
336
- "@typescript-eslint/no-inferrable-types": "error",
337
- "@typescript-eslint/no-invalid-this": "off",
338
- "@typescript-eslint/no-invalid-void-type": "error",
339
- "@typescript-eslint/no-loop-func": "error",
340
- "@typescript-eslint/no-magic-numbers": "off",
341
- "@typescript-eslint/no-meaningless-void-operator": "error",
342
- "@typescript-eslint/no-misused-new": "error",
343
- "@typescript-eslint/no-misused-promises": "error",
344
- "@typescript-eslint/no-mixed-enums": "error",
345
- "@typescript-eslint/no-namespace": "error",
346
- "@typescript-eslint/no-non-null-asserted-nullish-coalescing": "error",
347
- "@typescript-eslint/no-non-null-asserted-optional-chain": "error",
348
- "@typescript-eslint/no-non-null-assertion": "error",
349
- "@typescript-eslint/no-redeclare": "off",
350
- "@typescript-eslint/no-redundant-type-constituents": "error",
351
- "@typescript-eslint/no-require-imports": "error",
352
- "@typescript-eslint/no-restricted-imports": "error",
353
- "@typescript-eslint/no-restricted-types": "error",
354
- "@typescript-eslint/no-shadow": "error",
355
- "@typescript-eslint/no-this-alias": "error",
356
- "@typescript-eslint/no-unnecessary-boolean-literal-compare": "error",
357
- "@typescript-eslint/no-unnecessary-condition": "error",
358
- "@typescript-eslint/no-unnecessary-parameter-property-assignment":
359
- "error",
360
- "@typescript-eslint/no-unnecessary-qualifier": "error",
361
- "@typescript-eslint/no-unnecessary-template-expression": "error",
362
- "@typescript-eslint/no-unnecessary-type-arguments": "error",
363
- "@typescript-eslint/no-unnecessary-type-assertion": "error",
364
- "@typescript-eslint/no-unnecessary-type-constraint": "error",
365
- "@typescript-eslint/no-unnecessary-type-parameters": "off",
366
- "@typescript-eslint/no-unsafe-argument": "error",
367
- "@typescript-eslint/no-unsafe-assignment": "error",
368
- "@typescript-eslint/no-unsafe-call": "error",
369
- "@typescript-eslint/no-unsafe-declaration-merging": "error",
370
- "@typescript-eslint/no-unsafe-enum-comparison": "error",
371
- "@typescript-eslint/no-unsafe-function-type": "error",
372
- "@typescript-eslint/no-unsafe-member-access": "error",
373
- "@typescript-eslint/no-unsafe-return": "error",
374
- "@typescript-eslint/no-unsafe-type-assertion": "error",
375
- "@typescript-eslint/no-unsafe-unary-minus": "error",
376
- "@typescript-eslint/no-unused-expressions": "error",
377
- "@typescript-eslint/no-unused-vars": [
378
- "error",
379
- {
380
- args: "all",
381
- argsIgnorePattern: "^_",
382
- caughtErrors: "all",
383
- caughtErrorsIgnorePattern: "^_",
384
- destructuredArrayIgnorePattern: "^_",
385
- ignoreRestSiblings: !0,
386
- varsIgnorePattern: "^_",
387
- },
388
- ],
389
- "@typescript-eslint/no-use-before-define": "off",
390
- "@typescript-eslint/no-useless-constructor": "error",
391
- "@typescript-eslint/no-useless-empty-export": "error",
392
- "@typescript-eslint/no-wrapper-object-types": "error",
393
- "@typescript-eslint/non-nullable-type-assertion-style": "error",
394
- "@typescript-eslint/only-throw-error": "error",
395
- "@typescript-eslint/parameter-properties": "off",
396
- "@typescript-eslint/prefer-as-const": "error",
397
- "@typescript-eslint/prefer-destructuring": "error",
398
- "@typescript-eslint/prefer-enum-initializers": "error",
399
- "@typescript-eslint/prefer-find": "error",
400
- "@typescript-eslint/prefer-for-of": "error",
401
- "@typescript-eslint/prefer-function-type": "error",
402
- "@typescript-eslint/prefer-includes": "error",
403
- "@typescript-eslint/prefer-literal-enum-member": "error",
404
- "@typescript-eslint/prefer-namespace-keyword": "error",
405
- "@typescript-eslint/prefer-nullish-coalescing": "error",
406
- "@typescript-eslint/prefer-optional-chain": "error",
407
- "@typescript-eslint/prefer-promise-reject-errors": "error",
408
- "@typescript-eslint/prefer-readonly": "error",
409
- "@typescript-eslint/prefer-readonly-parameter-types": "off",
410
- "@typescript-eslint/prefer-reduce-type-parameter": "error",
411
- "@typescript-eslint/prefer-regexp-exec": "error",
412
- "@typescript-eslint/prefer-return-this-type": "error",
413
- "@typescript-eslint/prefer-string-starts-ends-with": "error",
414
- "@typescript-eslint/promise-function-async": "error",
415
- "@typescript-eslint/related-getter-setter-pairs": "error",
416
- "@typescript-eslint/require-array-sort-compare": "error",
417
- "@typescript-eslint/require-await": "error",
418
- "@typescript-eslint/restrict-plus-operands": "error",
419
- "@typescript-eslint/restrict-template-expressions": "error",
420
- "@typescript-eslint/return-await": "error",
421
- "@typescript-eslint/strict-boolean-expressions": "error",
422
- "@typescript-eslint/switch-exhaustiveness-check": "error",
423
- "@typescript-eslint/triple-slash-reference": "error",
424
- "@typescript-eslint/typedef": "off",
425
- "@typescript-eslint/unbound-method": "error",
426
- "@typescript-eslint/unified-signatures": "error",
427
- "@typescript-eslint/use-unknown-in-catch-callback-variable": "error",
428
- "unicorn/better-regex": "error",
429
- "unicorn/catch-error-name": "error",
430
- "unicorn/consistent-destructuring": "error",
431
- "unicorn/consistent-empty-array-spread": "error",
432
- "unicorn/consistent-existence-index-check": "error",
433
- "unicorn/consistent-function-scoping": "error",
434
- "unicorn/custom-error-definition": "error",
435
- "unicorn/empty-brace-spaces": "off",
436
- "unicorn/error-message": "error",
437
- "unicorn/escape-case": "error",
438
- "unicorn/expiring-todo-comments": "error",
439
- "unicorn/explicit-length-check": "off",
440
- "unicorn/filename-case": "error",
441
- "unicorn/import-style": "error",
442
- "unicorn/new-for-builtins": "error",
443
- "unicorn/no-abusive-eslint-disable": "error",
444
- "unicorn/no-anonymous-default-export": "error",
445
- "unicorn/no-array-callback-reference": "error",
446
- "unicorn/no-array-for-each": "error",
447
- "unicorn/no-array-method-this-argument": "error",
448
- "unicorn/no-array-push-push": "error",
449
- "unicorn/no-array-reduce": "error",
450
- "unicorn/no-await-expression-member": "error",
451
- "unicorn/no-await-in-promise-methods": "error",
452
- "unicorn/no-console-spaces": "error",
453
- "unicorn/no-document-cookie": "error",
454
- "unicorn/no-empty-file": "error",
455
- "unicorn/no-for-loop": "error",
456
- "unicorn/no-hex-escape": "error",
457
- "unicorn/no-instanceof-array": "error",
458
- "unicorn/no-invalid-fetch-options": "error",
459
- "unicorn/no-invalid-remove-event-listener": "error",
460
- "unicorn/no-keyword-prefix": "off",
461
- "unicorn/no-length-as-slice-end": "error",
462
- "unicorn/no-lonely-if": "error",
463
- "unicorn/no-magic-array-flat-depth": "error",
464
- "unicorn/no-negated-condition": "error",
465
- "unicorn/no-negation-in-equality-check": "error",
466
- "unicorn/no-nested-ternary": "off",
467
- "unicorn/no-new-array": "error",
468
- "unicorn/no-new-buffer": "error",
469
- "unicorn/no-null": "off",
470
- "unicorn/no-object-as-default-parameter": "error",
471
- "unicorn/no-process-exit": "error",
472
- "unicorn/no-single-promise-in-promise-methods": "error",
473
- "unicorn/no-static-only-class": "error",
474
- "unicorn/no-thenable": "error",
475
- "unicorn/no-this-assignment": "error",
476
- "unicorn/no-typeof-undefined": "error",
477
- "unicorn/no-unnecessary-await": "error",
478
- "unicorn/no-unnecessary-polyfills": "error",
479
- "unicorn/no-unreadable-array-destructuring": "error",
480
- "unicorn/no-unreadable-iife": "error",
481
- "unicorn/no-unused-properties": "error",
482
- "unicorn/no-useless-fallback-in-spread": "error",
483
- "unicorn/no-useless-length-check": "error",
484
- "unicorn/no-useless-promise-resolve-reject": "error",
485
- "unicorn/no-useless-spread": "error",
486
- "unicorn/no-useless-switch-case": "error",
487
- "unicorn/no-useless-undefined": "error",
488
- "unicorn/no-zero-fractions": "error",
489
- "unicorn/number-literal-case": "off",
490
- "unicorn/numeric-separators-style": "error",
491
- "unicorn/prefer-add-event-listener": "error",
492
- "unicorn/prefer-array-find": "error",
493
- "unicorn/prefer-array-flat": "error",
494
- "unicorn/prefer-array-flat-map": "error",
495
- "unicorn/prefer-array-index-of": "error",
496
- "unicorn/prefer-array-some": "error",
497
- "unicorn/prefer-at": "error",
498
- "unicorn/prefer-blob-reading-methods": "error",
499
- "unicorn/prefer-code-point": "error",
500
- "unicorn/prefer-date-now": "error",
501
- "unicorn/prefer-default-parameters": "error",
502
- "unicorn/prefer-dom-node-append": "error",
503
- "unicorn/prefer-dom-node-dataset": "error",
504
- "unicorn/prefer-dom-node-remove": "error",
505
- "unicorn/prefer-dom-node-text-content": "error",
506
- "unicorn/prefer-event-target": "error",
507
- "unicorn/prefer-export-from": "error",
508
- "unicorn/prefer-global-this": "error",
509
- "unicorn/prefer-includes": "error",
510
- "unicorn/prefer-json-parse-buffer": "error",
511
- "unicorn/prefer-keyboard-event-key": "error",
512
- "unicorn/prefer-logical-operator-over-ternary": "error",
513
- "unicorn/prefer-math-min-max": "error",
514
- "unicorn/prefer-math-trunc": "error",
515
- "unicorn/prefer-modern-dom-apis": "error",
516
- "unicorn/prefer-modern-math-apis": "error",
517
- "unicorn/prefer-module": "error",
518
- "unicorn/prefer-native-coercion-functions": "error",
519
- "unicorn/prefer-negative-index": "error",
520
- "unicorn/prefer-node-protocol": "error",
521
- "unicorn/prefer-number-properties": "error",
522
- "unicorn/prefer-object-from-entries": "error",
523
- "unicorn/prefer-optional-catch-binding": "error",
524
- "unicorn/prefer-prototype-methods": "error",
525
- "unicorn/prefer-query-selector": "error",
526
- "unicorn/prefer-reflect-apply": "error",
527
- "unicorn/prefer-regexp-test": "error",
528
- "unicorn/prefer-set-has": "error",
529
- "unicorn/prefer-set-size": "error",
530
- "unicorn/prefer-spread": "error",
531
- "unicorn/prefer-string-raw": "error",
532
- "unicorn/prefer-string-replace-all": "error",
533
- "unicorn/prefer-string-slice": "error",
534
- "unicorn/prefer-string-starts-ends-with": "error",
535
- "unicorn/prefer-string-trim-start-end": "error",
536
- "unicorn/prefer-structured-clone": "error",
537
- "unicorn/prefer-switch": "error",
538
- "unicorn/prefer-ternary": "error",
539
- "unicorn/prefer-top-level-await": "error",
540
- "unicorn/prefer-type-error": "error",
541
- "unicorn/prevent-abbreviations": "error",
542
- "unicorn/relative-url-style": "error",
543
- "unicorn/require-array-join-separator": "error",
544
- "unicorn/require-number-to-fixed-digits-argument": "error",
545
- "unicorn/require-post-message-target-origin": "error",
546
- "unicorn/string-content": "error",
547
- "unicorn/switch-case-braces": "error",
548
- "unicorn/template-indent": "off",
549
- "unicorn/text-encoding-identifier-case": "error",
550
- "unicorn/throw-new-error": "error",
551
- "lodash/callback-binding": "error",
552
- "lodash/chain-style": [2, "as-needed"],
553
- "lodash/chaining": "error",
554
- "lodash/collection-method-value": "error",
555
- "lodash/collection-ordering": "error",
556
- "lodash/collection-return": "error",
557
- "lodash/consistent-compose": [2, "flow"],
558
- "lodash/identity-shorthand": [2, "always"],
559
- "lodash/import-scope": [2, "method"],
560
- "lodash/matches-prop-shorthand": [2, "always"],
561
- "lodash/matches-shorthand": [2, "always", 3],
562
- "lodash/no-commit": "error",
563
- "lodash/no-double-unwrap": "error",
564
- "lodash/no-extra-args": "error",
565
- "lodash/no-unbound-this": "error",
566
- "lodash/path-style": [2, "array"],
567
- "lodash/prefer-compact": "error",
568
- "lodash/prefer-constant": "error",
569
- "lodash/prefer-filter": "error",
570
- "lodash/prefer-find": "error",
571
- "lodash/prefer-flat-map": "error",
572
- "lodash/prefer-get": "error",
573
- "lodash/prefer-immutable-method": "error",
574
- "lodash/prefer-includes": [2, { includeNative: !0 }],
575
- "lodash/prefer-invoke-map": "error",
576
- "lodash/prefer-is-nil": "error",
577
- "lodash/prefer-lodash-chain": "error",
578
- "lodash/prefer-lodash-method": "error",
579
- "lodash/prefer-lodash-typecheck": "error",
580
- "lodash/prefer-map": "error",
581
- "lodash/prefer-matches": "error",
582
- "lodash/prefer-noop": "error",
583
- "lodash/prefer-over-quantifier": "error",
584
- "lodash/prefer-reject": "error",
585
- "lodash/prefer-some": [2, { includeNative: !0 }],
586
- "lodash/prefer-startswith": "error",
587
- "lodash/prefer-thru": "error",
588
- "lodash/prefer-times": "error",
589
- "lodash/prefer-wrapper-method": "error",
590
- "lodash/preferred-alias": "error",
591
- "lodash/prop-shorthand": [2, "always"],
592
- "lodash/unwrap": "error",
593
- "sonar/anchor-precedence": "error",
594
- "sonar/argument-type": "error",
595
- "sonar/arguments-order": "error",
596
- "sonar/arguments-usage": "error",
597
- "sonar/array-callback-without-return": "error",
598
- "sonar/array-constructor": "error",
599
- "sonar/arrow-function-convention": "off",
600
- "sonar/assertions-in-tests": "error",
601
- "sonar/aws-apigateway-public-api": "error",
602
- "sonar/aws-ec2-rds-dms-public": "error",
603
- "sonar/aws-ec2-unencrypted-ebs-volume": "error",
604
- "sonar/aws-efs-unencrypted": "error",
605
- "sonar/aws-iam-all-privileges": "error",
606
- "sonar/aws-iam-all-resources-accessible": "error",
607
- "sonar/aws-iam-privilege-escalation": "error",
608
- "sonar/aws-iam-public-access": "error",
609
- "sonar/aws-opensearchservice-domain": "error",
610
- "sonar/aws-rds-unencrypted-databases": "error",
611
- "sonar/aws-restricted-ip-admin-access": "error",
612
- "sonar/aws-s3-bucket-granted-access": "error",
613
- "sonar/aws-s3-bucket-insecure-http": "error",
614
- "sonar/aws-s3-bucket-public-access": "error",
615
- "sonar/aws-s3-bucket-versioning": "error",
616
- "sonar/aws-sagemaker-unencrypted-notebook": "error",
617
- "sonar/aws-sns-unencrypted-topics": "error",
618
- "sonar/aws-sqs-unencrypted-queue": "error",
619
- "sonar/bitwise-operators": "error",
620
- "sonar/block-scoped-var": "error",
621
- "sonar/bool-param-default": "error",
622
- "sonar/call-argument-line": "error",
623
- "sonar/certificate-transparency": "error",
624
- "sonar/chai-determinate-assertion": "error",
625
- "sonar/class-name": "error",
626
- "sonar/class-prototype": "error",
627
- "sonar/code-eval": "error",
628
- "sonar/cognitive-complexity": "error",
629
- "sonar/comma-or-logical-or-case": "error",
630
- "sonar/comment-regex": "off",
631
- "sonar/concise-regex": "error",
632
- "sonar/confidential-information-logging": "error",
633
- "sonar/constructor-for-side-effects": "error",
634
- "sonar/content-length": "error",
635
- "sonar/content-security-policy": "error",
636
- "sonar/cookie-no-httponly": "error",
637
- "sonar/cors": "error",
638
- "sonar/csrf": "error",
639
- "sonar/cyclomatic-complexity": "off",
640
- "sonar/declarations-in-global-scope": "error",
641
- "sonar/deprecation": "error",
642
- "sonar/destructuring-assignment-syntax": "error",
643
- "sonar/different-types-comparison": "error",
644
- "sonar/disabled-auto-escaping": "error",
645
- "sonar/disabled-resource-integrity": "error",
646
- "sonar/disabled-timeout": "error",
647
- "sonar/duplicates-in-character-class": "error",
648
- "sonar/elseif-without-else": "error",
649
- "sonar/empty-string-repetition": "error",
650
- "sonar/encryption-secure-mode": "error",
651
- "sonar/existing-groups": "error",
652
- "sonar/expression-complexity": "error",
653
- "sonar/file-header": "off",
654
- "sonar/file-name-differ-from-class": "error",
655
- "sonar/file-permissions": "error",
656
- "sonar/file-uploads": "error",
657
- "sonar/fixme-tag": "error",
658
- "sonar/for-in": "error",
659
- "sonar/for-loop-increment-sign": "error",
660
- "sonar/frame-ancestors": "error",
661
- "sonar/function-inside-loop": "error",
662
- "sonar/function-name": [
663
- "error",
664
- { format: "^(?:[a-z][a-zA-Z0-9]*|[A-Z][A-Z0-9]*)$" },
665
- ],
666
- "sonar/function-return-type": "off",
667
- "sonar/future-reserved-words": "error",
668
- "sonar/generator-without-yield": "error",
669
- "sonar/hashing": "error",
670
- "sonar/hidden-files": "error",
671
- "sonar/in-operator-type-error": "error",
672
- "sonar/inconsistent-function-call": "error",
673
- "sonar/index-of-compare-to-positive-number": "error",
674
- "sonar/insecure-cookie": "error",
675
- "sonar/insecure-jwt-token": "error",
676
- "sonar/inverted-assertion-arguments": "error",
677
- "sonar/jsx-no-leaked-render": "error",
678
- "sonar/label-position": "error",
679
- "sonar/link-with-target-blank": "error",
680
- "sonar/max-lines": "error",
681
- "sonar/max-lines-per-function": "error",
682
- "sonar/max-switch-cases": "error",
683
- "sonar/max-union-size": "off",
684
- "sonar/misplaced-loop-counter": "error",
685
- "sonar/nested-control-flow": "error",
686
- "sonar/new-operator-misuse": "error",
687
- "sonar/no-all-duplicated-branches": "error",
688
- "sonar/no-alphabetical-sort": "error",
689
- "sonar/no-angular-bypass-sanitization": "error",
690
- "sonar/no-array-delete": "error",
691
- "sonar/no-associative-arrays": "error",
692
- "sonar/no-async-constructor": "error",
693
- "sonar/no-built-in-override": "error",
694
- "sonar/no-case-label-in-switch": "error",
695
- "sonar/no-clear-text-protocols": "error",
696
- "sonar/no-code-after-done": "error",
697
- "sonar/no-collapsible-if": "error",
698
- "sonar/no-collection-size-mischeck": "error",
699
- "sonar/no-commented-code": "error",
700
- "sonar/no-control-regex": "error",
701
- "sonar/no-dead-store": "error",
702
- "sonar/no-delete-var": "error",
703
- "sonar/no-duplicate-in-composite": "error",
704
- "sonar/no-duplicate-string": "error",
705
- "sonar/no-duplicated-branches": "error",
706
- "sonar/no-element-overwrite": "error",
707
- "sonar/no-empty-after-reluctant": "error",
708
- "sonar/no-empty-alternatives": "error",
709
- "sonar/no-empty-character-class": "error",
710
- "sonar/no-empty-collection": "error",
711
- "sonar/no-empty-group": "error",
712
- "sonar/no-empty-test-file": "error",
713
- "sonar/no-equals-in-for-termination": "error",
714
- "sonar/no-exclusive-tests": "error",
715
- "sonar/no-extra-arguments": "error",
716
- "sonar/no-fallthrough": "error",
717
- "sonar/no-for-in-iterable": "error",
718
- "sonar/no-function-declaration-in-block": "error",
719
- "sonar/no-global-this": "error",
720
- "sonar/no-globals-shadowing": "error",
721
- "sonar/no-gratuitous-expressions": "error",
722
- "sonar/no-hardcoded-ip": "error",
723
- "sonar/no-hardcoded-passwords": "error",
724
- "sonar/no-hardcoded-secrets": "error",
725
- "sonar/no-hook-setter-in-body": "error",
726
- "sonar/no-identical-conditions": "error",
727
- "sonar/no-identical-expressions": "error",
728
- "sonar/no-identical-functions": "error",
729
- "sonar/no-ignored-exceptions": "error",
730
- "sonar/no-ignored-return": "error",
731
- "sonar/no-implicit-dependencies": "off",
732
- "sonar/no-implicit-global": "error",
733
- "sonar/no-in-misuse": "error",
734
- "sonar/no-incomplete-assertions": "error",
735
- "sonar/no-inconsistent-returns": "off",
736
- "sonar/no-incorrect-string-concat": "error",
737
- "sonar/no-internal-api-use": "error",
738
- "sonar/no-intrusive-permissions": "error",
739
- "sonar/no-invalid-await": "error",
740
- "sonar/no-invalid-regexp": "error",
741
- "sonar/no-invariant-returns": "error",
742
- "sonar/no-inverted-boolean-check": "error",
743
- "sonar/no-ip-forward": "error",
744
- "sonar/no-labels": "error",
745
- "sonar/no-literal-call": "error",
746
- "sonar/no-mime-sniff": "error",
747
- "sonar/no-misleading-array-reverse": "error",
748
- "sonar/no-misleading-character-class": "error",
749
- "sonar/no-mixed-content": "error",
750
- "sonar/no-nested-assignment": "error",
751
- "sonar/no-nested-conditional": "error",
752
- "sonar/no-nested-functions": "error",
753
- "sonar/no-nested-incdec": "error",
754
- "sonar/no-nested-switch": "error",
755
- "sonar/no-nested-template-literals": "error",
756
- "sonar/no-one-iteration-loop": "error",
757
- "sonar/no-os-command-from-path": "error",
758
- "sonar/no-parameter-reassignment": "error",
759
- "sonar/no-primitive-wrappers": "error",
760
- "sonar/no-redundant-assignments": "error",
761
- "sonar/no-redundant-boolean": "error",
762
- "sonar/no-redundant-jump": "error",
763
- "sonar/no-redundant-optional": "error",
764
- "sonar/no-reference-error": "error",
765
- "sonar/no-referrer-policy": "error",
766
- "sonar/no-regex-spaces": "error",
767
- "sonar/no-require-or-define": "error",
768
- "sonar/no-return-type-any": "error",
769
- "sonar/no-same-argument-assert": "error",
770
- "sonar/no-same-line-conditional": "error",
771
- "sonar/no-selector-parameter": "error",
772
- "sonar/no-skipped-tests": "error",
773
- "sonar/no-small-switch": "error",
774
- "sonar/no-sonar-comments": "error",
775
- "sonar/no-table-as-layout": "error",
776
- "sonar/no-try-promise": "error",
777
- "sonar/no-undefined-argument": "error",
778
- "sonar/no-undefined-assignment": "off",
779
- "sonar/no-unenclosed-multiline-block": "error",
780
- "sonar/no-uniq-key": "error",
781
- "sonar/no-unsafe-unzip": "error",
782
- "sonar/no-unthrown-error": "error",
783
- "sonar/no-unused-collection": "error",
784
- "sonar/no-unused-function-argument": "error",
785
- "sonar/no-unused-vars": "error",
786
- "sonar/no-use-of-empty-return-value": "error",
787
- "sonar/no-useless-catch": "error",
788
- "sonar/no-useless-increment": "error",
789
- "sonar/no-useless-intersection": "error",
790
- "sonar/no-useless-react-setstate": "error",
791
- "sonar/no-variable-usage-before-declaration": "error",
792
- "sonar/no-weak-cipher": "error",
793
- "sonar/no-weak-keys": "error",
794
- "sonar/no-wildcard-import": "error",
795
- "sonar/non-existent-operator": "error",
796
- "sonar/non-number-in-arithmetic-expression": "error",
797
- "sonar/null-dereference": "error",
798
- "sonar/object-alt-content": "error",
799
- "sonar/operation-returning-nan": "error",
800
- "sonar/os-command": "error",
801
- "sonar/post-message": "error",
802
- "sonar/prefer-default-last": "error",
803
- "sonar/prefer-immediate-return": "error",
804
- "sonar/prefer-object-literal": "error",
805
- "sonar/prefer-promise-shorthand": "error",
806
- "sonar/prefer-read-only-props": "error",
807
- "sonar/prefer-regexp-exec": "error",
808
- "sonar/prefer-single-boolean-return": "error",
809
- "sonar/prefer-type-guard": "error",
810
- "sonar/prefer-while": "error",
811
- "sonar/production-debug": "error",
812
- "sonar/pseudo-random": "error",
813
- "sonar/public-static-readonly": "error",
814
- "sonar/publicly-writable-directories": "error",
815
- "sonar/reduce-initial-value": "error",
816
- "sonar/redundant-type-aliases": "error",
817
- "sonar/regex-complexity": "error",
818
- "sonar/session-regeneration": "error",
819
- "sonar/shorthand-property-grouping": "off",
820
- "sonar/single-char-in-character-classes": "error",
821
- "sonar/single-character-alternation": "error",
822
- "sonar/slow-regex": "error",
823
- "sonar/sql-queries": "error",
824
- "sonar/stable-tests": "error",
825
- "sonar/stateful-regex": "error",
826
- "sonar/strict-transport-security": "error",
827
- "sonar/strings-comparison": "error",
828
- "sonar/super-invocation": "error",
829
- "sonar/table-header": "error",
830
- "sonar/table-header-reference": "error",
831
- "sonar/test-check-exception": "error",
832
- "sonar/todo-tag": "off",
833
- "sonar/too-many-break-or-continue-in-loop": "error",
834
- "sonar/unicode-aware-regex": "error",
835
- "sonar/unused-import": "error",
836
- "sonar/unused-named-groups": "error",
837
- "sonar/unverified-certificate": "error",
838
- "sonar/unverified-hostname": "error",
839
- "sonar/updated-const-var": "error",
840
- "sonar/updated-loop-counter": "error",
841
- "sonar/use-type-alias": "error",
842
- "sonar/values-not-convertible-to-numbers": "error",
843
- "sonar/variable-name": "error",
844
- "sonar/void-use": "error",
845
- "sonar/weak-ssl": "error",
846
- "sonar/x-powered-by": "error",
847
- "sonar/xml-parser-xxe": "error",
848
- "tailwind/classnames-order": "error",
849
- "tailwind/enforces-negative-arbitrary-values": "error",
850
- "tailwind/enforces-shorthand": "error",
851
- "tailwind/migration-from-tailwind-2": "error",
852
- "tailwind/no-arbitrary-value": "error",
853
- "tailwind/no-contradicting-classname": "error",
854
- "tailwind/no-custom-classname": "off",
855
- "tailwind/no-unnecessary-arbitrary-value": "error",
856
- "stylistic/array-bracket-newline": ["error", "consistent"],
857
- "stylistic/array-bracket-spacing": "error",
858
- "stylistic/array-element-newline": ["error", "consistent"],
859
- "stylistic/arrow-parens": "error",
860
- "stylistic/arrow-spacing": "error",
861
- "stylistic/block-spacing": "off",
862
- "stylistic/brace-style": "off",
863
- "stylistic/comma-dangle": "off",
864
- "stylistic/comma-spacing": "off",
865
- "stylistic/comma-style": "error",
866
- "stylistic/computed-property-spacing": "error",
867
- "stylistic/curly-newline": "error",
868
- "stylistic/dot-location": ["error", "property"],
869
- "stylistic/eol-last": "error",
870
- "stylistic/func-call-spacing": "off",
871
- "stylistic/function-call-argument-newline": ["error", "consistent"],
872
- "stylistic/function-call-spacing": "off",
873
- "stylistic/function-paren-newline": ["error", "consistent"],
874
- "stylistic/generator-star-spacing": "error",
875
- "stylistic/implicit-arrow-linebreak": "error",
876
- "stylistic/indent": "off",
877
- "stylistic/indent-binary-ops": "error",
878
- "stylistic/jsx-child-element-spacing": "error",
879
- "stylistic/jsx-closing-bracket-location": "error",
880
- "stylistic/jsx-closing-tag-location": "error",
881
- "stylistic/jsx-curly-brace-presence": "error",
882
- "stylistic/jsx-curly-newline": [
883
- "error",
884
- { multiline: "require", singleline: "consistent" },
885
- ],
886
- "stylistic/jsx-curly-spacing": "error",
887
- "stylistic/jsx-equals-spacing": "error",
888
- "stylistic/jsx-first-prop-new-line": ["error", "multiprop"],
889
- "stylistic/jsx-function-call-newline": ["error", "always"],
890
- "stylistic/jsx-indent-props": ["error", 2],
891
- "stylistic/jsx-max-props-per-line": "error",
892
- "stylistic/jsx-newline": ["error", { prevent: !0 }],
893
- "stylistic/jsx-one-expression-per-line": "error",
894
- "stylistic/jsx-pascal-case": "error",
895
- "stylistic/jsx-props-no-multi-spaces": "error",
896
- "stylistic/jsx-quotes": "error",
897
- "stylistic/jsx-self-closing-comp": "error",
898
- "stylistic/jsx-sort-props": "off",
899
- "stylistic/jsx-tag-spacing": "error",
900
- "stylistic/jsx-wrap-multilines": [
901
- "error",
902
- { declaration: "parens-new-line" },
903
- ],
904
- "stylistic/key-spacing": "error",
905
- "stylistic/keyword-spacing": "off",
906
- "stylistic/line-comment-position": "off",
907
- "stylistic/linebreak-style": "error",
908
- "stylistic/lines-around-comment": "off",
909
- "stylistic/lines-between-class-members": "off",
910
- "stylistic/max-len": [
911
- "error",
912
- {
913
- ignoreComments: !0,
914
- ignoreTrailingComments: !0,
915
- ignoreUrls: !0,
916
- ignoreStrings: !0,
917
- ignoreTemplateLiterals: !0,
918
- ignoreRegExpLiterals: !0,
919
- },
920
- ],
921
- "stylistic/max-statements-per-line": "error",
922
- "stylistic/member-delimiter-style": "off",
923
- "stylistic/multiline-comment-style": "off",
924
- "stylistic/multiline-ternary": "error",
925
- "stylistic/new-parens": "error",
926
- "stylistic/newline-per-chained-call": "error",
927
- "stylistic/no-confusing-arrow": "error",
928
- "stylistic/no-extra-parens": "off",
929
- "stylistic/no-extra-semi": "off",
930
- "stylistic/no-floating-decimal": "error",
931
- "stylistic/no-mixed-operators": "error",
932
- "stylistic/no-mixed-spaces-and-tabs": "error",
933
- "stylistic/no-multi-spaces": "error",
934
- "stylistic/no-multiple-empty-lines": [
935
- "error",
936
- { max: 1, maxEOF: 1, maxBOF: 0 },
937
- ],
938
- "stylistic/no-tabs": "error",
939
- "stylistic/no-trailing-spaces": "error",
940
- "stylistic/no-whitespace-before-property": "error",
941
- "stylistic/nonblock-statement-body-position": "error",
942
- "stylistic/object-curly-newline": "off",
943
- "stylistic/object-curly-spacing": "off",
944
- "stylistic/object-property-newline": "off",
945
- "stylistic/one-var-declaration-per-line": "error",
946
- "stylistic/operator-linebreak": "error",
947
- "stylistic/padded-blocks": ["error", "never"],
948
- "stylistic/padding-line-between-statements": "off",
949
- "stylistic/quote-props": "off",
950
- "stylistic/quotes": "off",
951
- "stylistic/rest-spread-spacing": "error",
952
- "stylistic/semi": "off",
953
- "stylistic/semi-spacing": "error",
954
- "stylistic/semi-style": "error",
955
- "stylistic/space-before-blocks": "off",
956
- "stylistic/space-before-function-paren": "off",
957
- "stylistic/space-in-parens": "error",
958
- "stylistic/space-infix-ops": "off",
959
- "stylistic/space-unary-ops": "error",
960
- "stylistic/spaced-comment": "error",
961
- "stylistic/switch-colon-spacing": "error",
962
- "stylistic/template-curly-spacing": "error",
963
- "stylistic/template-tag-spacing": "error",
964
- "stylistic/type-annotation-spacing": "off",
965
- "stylistic/type-generic-spacing": "error",
966
- "stylistic/type-named-tuple-spacing": "error",
967
- "stylistic/wrap-iife": "error",
968
- "stylistic/wrap-regex": "error",
969
- "stylistic/yield-star-spacing": "error",
970
- "stylistic-ts/block-spacing": "error",
971
- "stylistic-ts/brace-style": "error",
972
- "stylistic-ts/comma-dangle": [
973
- "error",
974
- {
975
- arrays: "always-multiline",
976
- objects: "always-multiline",
977
- imports: "always-multiline",
978
- exports: "always-multiline",
979
- functions: "always-multiline",
980
- enums: "never",
981
- generics: "always",
982
- tuples: "never",
983
- },
984
- ],
985
- "stylistic-ts/comma-spacing": "error",
986
- "stylistic-ts/func-call-spacing": "error",
987
- "stylistic-ts/function-call-spacing": "error",
988
- "stylistic-ts/indent": ["error", 2],
989
- "stylistic-ts/key-spacing": "error",
990
- "stylistic-ts/keyword-spacing": "error",
991
- "stylistic-ts/lines-around-comment": "error",
992
- "stylistic-ts/lines-between-class-members": "error",
993
- "stylistic-ts/member-delimiter-style": "error",
994
- "stylistic-ts/no-extra-parens": [
995
- "error",
996
- "all",
997
- { ignoreJSX: "multi-line" },
998
- ],
999
- "stylistic-ts/no-extra-semi": "error",
1000
- "stylistic-ts/object-curly-newline": [
1001
- "error",
1002
- { multiline: !0, consistent: !0 },
1003
- ],
1004
- "stylistic-ts/object-curly-spacing": ["error", "always"],
1005
- "stylistic-ts/object-property-newline": "error",
1006
- "stylistic-ts/padding-line-between-statements": "error",
1007
- "stylistic-ts/quote-props": ["error", "as-needed"],
1008
- "stylistic-ts/quotes": "error",
1009
- "stylistic-ts/semi": "error",
1010
- "stylistic-ts/space-before-blocks": "error",
1011
- "stylistic-ts/space-before-function-paren": [
1012
- "error",
1013
- { anonymous: "always", named: "never", asyncArrow: "always" },
1014
- ],
1015
- "stylistic-ts/space-infix-ops": "error",
1016
- "stylistic-ts/type-annotation-spacing": "error",
1017
- "perfectionist/sort-array-includes": "error",
1018
- "perfectionist/sort-classes": "error",
1019
- "perfectionist/sort-decorators": "error",
1020
- "perfectionist/sort-enums": "error",
1021
- "perfectionist/sort-exports": "error",
1022
- "perfectionist/sort-heritage-clauses": "error",
1023
- "perfectionist/sort-imports": [
1024
- "error",
1025
- {
1026
- groups: [
1027
- "type",
1028
- ["builtin", "external"],
1029
- "internal-type",
1030
- "internal",
1031
- ["parent-type", "sibling-type", "index-type"],
1032
- ["parent", "sibling", "index"],
1033
- "object",
1034
- "unknown",
1035
- ],
1036
- newlinesBetween: "always",
1037
- },
1038
- ],
1039
- "perfectionist/sort-interfaces": "error",
1040
- "perfectionist/sort-intersection-types": "error",
1041
- "perfectionist/sort-jsx-props": [
1042
- "error",
1043
- { groups: ["shorthand", "multiline"] },
1044
- ],
1045
- "perfectionist/sort-maps": "error",
1046
- "perfectionist/sort-modules": "error",
1047
- "perfectionist/sort-named-exports": "error",
1048
- "perfectionist/sort-named-imports": "error",
1049
- "perfectionist/sort-object-types": "error",
1050
- "perfectionist/sort-objects": ["error", { partitionByComment: !0 }],
1051
- "perfectionist/sort-sets": "error",
1052
- "perfectionist/sort-switch-case": [
1053
- "error",
1054
- { order: "asc", type: "alphabetical" },
1055
- ],
1056
- "perfectionist/sort-union-types": "error",
1057
- "perfectionist/sort-variable-declarations": [
1058
- "error",
1059
- { order: "asc", type: "alphabetical" },
1060
- ],
1061
- "@tanstack/query/exhaustive-deps": "error",
1062
- "@tanstack/query/infinite-query-property-order": "error",
1063
- "@tanstack/query/no-rest-destructuring": "error",
1064
- "@tanstack/query/no-unstable-deps": "error",
1065
- "@tanstack/query/stable-query-client": "error",
1066
- "@tanstack/router/create-route-property-order": "error",
1067
- "a11y/alt-text": "error",
1068
- "a11y/anchor-ambiguous-text": "error",
1069
- "a11y/anchor-has-content": "error",
1070
- "a11y/anchor-is-valid": "error",
1071
- "a11y/aria-activedescendant-has-tabindex": "error",
1072
- "a11y/aria-props": "error",
1073
- "a11y/aria-proptypes": "error",
1074
- "a11y/aria-role": "error",
1075
- "a11y/aria-unsupported-elements": "error",
1076
- "a11y/autocomplete-valid": "error",
1077
- "a11y/click-events-have-key-events": "error",
1078
- "a11y/control-has-associated-label": "off",
1079
- "a11y/heading-has-content": "error",
1080
- "a11y/html-has-lang": "error",
1081
- "a11y/iframe-has-title": "error",
1082
- "a11y/img-redundant-alt": "error",
1083
- "a11y/interactive-supports-focus": "error",
1084
- "a11y/label-has-associated-control": "error",
1085
- "a11y/lang": "error",
1086
- "a11y/media-has-caption": "off",
1087
- "a11y/mouse-events-have-key-events": "error",
1088
- "a11y/no-access-key": "error",
1089
- "a11y/no-aria-hidden-on-focusable": "error",
1090
- "a11y/no-autofocus": "error",
1091
- "a11y/no-distracting-elements": "error",
1092
- "a11y/no-interactive-element-to-noninteractive-role": "error",
1093
- "a11y/no-noninteractive-element-interactions": "error",
1094
- "a11y/no-noninteractive-element-to-interactive-role": "error",
1095
- "a11y/no-noninteractive-tabindex": "error",
1096
- "a11y/no-redundant-roles": "error",
1097
- "a11y/no-static-element-interactions": "error",
1098
- "a11y/prefer-tag-over-role": "error",
1099
- "a11y/role-has-required-aria-props": "error",
1100
- "a11y/role-supports-aria-props": "error",
1101
- "a11y/scope": "error",
1102
- "a11y/tabindex-no-positive": "error",
1103
- "array-bracket-newline": "off",
1104
- "array-bracket-spacing": "off",
1105
- "array-element-newline": "off",
1106
- "arrow-parens": "off",
1107
- "arrow-spacing": "off",
1108
- "block-spacing": "off",
1109
- "brace-style": "off",
1110
- "callback-return": "off",
1111
- "comma-dangle": "off",
1112
- "comma-spacing": "off",
1113
- "comma-style": "off",
1114
- "computed-property-spacing": "off",
1115
- "dot-location": "off",
1116
- "eol-last": "off",
1117
- "func-call-spacing": "off",
1118
- "function-call-argument-newline": "off",
1119
- "function-paren-newline": "off",
1120
- "generator-star-spacing": "off",
1121
- "global-require": "off",
1122
- "handle-callback-err": "off",
1123
- "id-blacklist": "off",
1124
- "implicit-arrow-linebreak": "off",
1125
- indent: "off",
1126
- "indent-legacy": "off",
1127
- "jsx-quotes": "off",
1128
- "key-spacing": "off",
1129
- "keyword-spacing": "off",
1130
- "line-comment-position": "off",
1131
- "linebreak-style": "off",
1132
- "lines-around-comment": "off",
1133
- "lines-around-directive": "off",
1134
- "lines-between-class-members": "off",
1135
- "max-len": "off",
1136
- "max-statements-per-line": "off",
1137
- "multiline-comment-style": "off",
1138
- "multiline-ternary": "off",
1139
- "new-parens": "off",
1140
- "newline-after-var": "off",
1141
- "newline-before-return": "off",
1142
- "newline-per-chained-call": "off",
1143
- "no-buffer-constructor": "off",
1144
- "no-catch-shadow": "off",
1145
- "no-confusing-arrow": "off",
1146
- "no-extra-parens": "off",
1147
- "no-extra-semi": "off",
1148
- "no-floating-decimal": "off",
1149
- "no-mixed-operators": "off",
1150
- "no-mixed-requires": "off",
1151
- "no-mixed-spaces-and-tabs": "off",
1152
- "no-multi-spaces": "off",
1153
- "no-multiple-empty-lines": "off",
1154
- "no-native-reassign": "off",
1155
- "no-negated-in-lhs": "off",
1156
- "no-new-object": "off",
1157
- "no-new-require": "off",
1158
- "no-new-symbol": "off",
1159
- "no-path-concat": "off",
1160
- "no-process-env": "off",
1161
- "no-process-exit": "off",
1162
- "no-restricted-modules": "off",
1163
- "no-return-await": "off",
1164
- "no-spaced-func": "off",
1165
- "no-sync": "off",
1166
- "no-tabs": "off",
1167
- "no-trailing-spaces": "off",
1168
- "no-whitespace-before-property": "off",
1169
- "nonblock-statement-body-position": "off",
1170
- "object-curly-newline": "off",
1171
- "object-curly-spacing": "off",
1172
- "object-property-newline": "off",
1173
- "one-var-declaration-per-line": "off",
1174
- "operator-linebreak": "off",
1175
- "padded-blocks": "off",
1176
- "padding-line-between-statements": "off",
1177
- "prefer-reflect": "off",
1178
- "quote-props": "off",
1179
- quotes: "off",
1180
- "rest-spread-spacing": "off",
1181
- semi: "off",
1182
- "semi-spacing": "off",
1183
- "semi-style": "off",
1184
- "space-before-blocks": "off",
1185
- "space-before-function-paren": "off",
1186
- "space-in-parens": "off",
1187
- "space-infix-ops": "off",
1188
- "space-unary-ops": "off",
1189
- "spaced-comment": "off",
1190
- "switch-colon-spacing": "off",
1191
- "template-curly-spacing": "off",
1192
- "template-tag-spacing": "off",
1193
- "wrap-iife": "off",
1194
- "wrap-regex": "off",
1195
- "yield-star-spacing": "off",
1196
- "cspell/spellchecker": [
1197
- "error",
1198
- {
1199
- cspell: {
1200
- words: [
1201
- "typicode",
1202
- "toolbelt",
1203
- "taze",
1204
- "ethang",
1205
- "TSESTree",
1206
- "Boop",
1207
- "cldr",
1208
- "astro",
1209
- "laravel",
1210
- "qwik",
1211
- "sitecore",
1212
- "uswds",
1213
- "mediat",
1214
- "Packt",
1215
- "Academind",
1216
- "Udemy",
1217
- "Colte",
1218
- "Bootcamp",
1219
- "HTMX",
1220
- "MERN",
1221
- "Nuxt",
1222
- "Credly",
1223
- "Sterett",
1224
- "Beyonder",
1225
- "hotspot",
1226
- "lqip",
1227
- "Hawn",
1228
- "nextui",
1229
- "speculationrules",
1230
- "zustand",
1231
- "vinxi",
1232
- "datasource",
1233
- "turso",
1234
- "supabase",
1235
- "solidjs",
1236
- "labelledby",
1237
- "svix",
1238
- "blockqoute",
1239
- "cortexjs",
1240
- "mathrm",
1241
- "nums",
1242
- "lifecycles",
1243
- "krausest",
1244
- "Signalis",
1245
- "Plass",
1246
- "Iteree",
1247
- "Sonner",
1248
- "cmdk",
1249
- "ngsw",
1250
- ],
1251
- },
1252
- },
1253
- ],
1254
- },
1255
- },
1256
- {
1257
- files: ["**/*.md"],
1258
- plugins: { markdown: f },
1259
- rules: {
1260
- "markdown/fenced-code-language": "error",
1261
- "markdown/heading-increment": "error",
1262
- "markdown/no-duplicate-headings": "error",
1263
- "markdown/no-empty-links": "error",
1264
- "markdown/no-html": "error",
1265
- "markdown/no-invalid-label-refs": "error",
1266
- "markdown/no-missing-label-refs": "error",
1267
- },
1268
- },
1269
- {
1270
- files: ["**/*.json"],
1271
- language: "json/json",
1272
- plugins: { json: r },
1273
- rules: {
1274
- "json/no-duplicate-keys": "error",
1275
- "json/no-empty-keys": "error",
1276
- "json/no-unnormalized-keys": "error",
1277
- "json/no-unsafe-values": "error",
1278
- "json/top-level-interop": "error",
1279
- },
1280
- },
1281
- {
1282
- files: ["**/*.jsonc"],
1283
- language: "json/jsonc",
1284
- plugins: { json: r },
1285
- rules: {
1286
- "json/no-duplicate-keys": "error",
1287
- "json/no-empty-keys": "error",
1288
- "json/no-unnormalized-keys": "error",
1289
- "json/no-unsafe-values": "error",
1290
- "json/top-level-interop": "error",
1291
- },
1292
- },
1293
- {
1294
- files: ["**/*.json5"],
1295
- language: "json/json5",
1296
- plugins: { json: r },
1297
- rules: {
1298
- "json/no-duplicate-keys": "error",
1299
- "json/no-empty-keys": "error",
1300
- "json/no-unnormalized-keys": "error",
1301
- "json/no-unsafe-values": "error",
1302
- "json/top-level-interop": "error",
1303
- },
1304
- },
1305
- );
1306
- export { L as default };
1307
- //# sourceMappingURL=eslint.config.js.map
1
+ import{a as e,b as o}from"./chunk-WK3YS7OG.js";import{fixupPluginRules as s}from"@eslint/compat";import t from"eslint-plugin-jsx-a11y";import a from"eslint-plugin-barrel-files";import i from"eslint-plugin-compat";import c from"@cspell/eslint-plugin";import p from"eslint-plugin-depend";import l from"eslint-config-prettier";import f from"eslint-plugin-prettier/recommended";import r from"@eslint/json";import u from"eslint-plugin-lodash";import d from"@eslint/markdown";import m from"eslint-plugin-n";import y from"eslint-plugin-perfectionist";import g from"eslint-plugin-sonarjs";import h from"eslint-plugin-tailwindcss";import b from"@tanstack/eslint-plugin-query";import w from"@tanstack/eslint-plugin-router";import n from"typescript-eslint";import x from"eslint-plugin-unicorn";var F=n.config({files:["**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts}"],ignores:e,languageOptions:o,settings:{react:{version:"19.0.0"}},plugins:{depend:p,barrel:a,compat:i,n:m,"@typescript-eslint":n.plugin,unicorn:x,lodash:u,sonar:s(g),tailwind:h,perfectionist:y,"@tanstack/query":b,"@tanstack/router":w,a11y:t,cspell:c},rules:{"depend/ban-dependencies":["error",{allowed:["lodash","fs-extra"]}],"barrel/avoid-barrel-files":"error","barrel/avoid-importing-barrel-files":"off","barrel/avoid-namespace-import":"error","barrel/avoid-re-export-all":"error","compat/compat":"error","accessor-pairs":"error","array-callback-return":"error","arrow-body-style":"off","block-scoped-var":"error",camelcase:"off","capitalized-comments":"off","class-methods-use-this":"off",complexity:"off","consistent-return":"off","consistent-this":"off","constructor-super":"error",curly:"off","default-case":"off","default-case-last":"off","default-param-last":"off","dot-notation":"off",eqeqeq:"error","for-direction":"error","func-name-matching":"error","func-names":"off","func-style":["error","declaration",{allowArrowFunctions:!0}],"getter-return":"error","grouped-accessor-pairs":"error","guard-for-in":"error","id-denylist":"off","id-length":"off","id-match":"off","init-declarations":"off","logical-assignment-operators":"error","max-classes-per-file":"error","max-depth":"error","max-lines":"off","max-lines-per-function":"off","max-nested-callbacks":"error","max-params":"off","max-statements":"off","new-cap":"off","no-alert":"error","no-array-constructor":"off","no-async-promise-executor":"error","no-await-in-loop":"error","no-bitwise":"error","no-caller":"error","no-case-declarations":"error","no-class-assign":"error","no-compare-neg-zero":"error","no-cond-assign":"error","no-console":"error","no-const-assign":"error","no-constant-binary-expression":"error","no-constant-condition":"error","no-constructor-return":"error","no-continue":"error","no-control-regex":"error","no-debugger":"error","no-delete-var":"error","no-div-regex":"error","no-dupe-args":"error","no-dupe-class-members":"off","no-dupe-else-if":"error","no-dupe-keys":"error","no-duplicate-case":"error","no-duplicate-imports":"error","no-else-return":"error","no-empty":"error","no-empty-character-class":"error","no-empty-function":"off","no-empty-pattern":"error","no-empty-static-block":"error","no-eq-null":"error","no-eval":"error","no-ex-assign":"error","no-extend-native":"error","no-extra-bind":"error","no-extra-boolean-cast":"error","no-extra-label":"error","no-fallthrough":"error","no-func-assign":"error","no-global-assign":"error","no-implicit-coercion":"error","no-implicit-globals":"off","no-implied-eval":"off","no-import-assign":"error","no-inline-comments":"off","no-inner-declarations":"error","no-invalid-regexp":"error","no-invalid-this":"error","no-irregular-whitespace":"error","no-iterator":"error","no-label-var":"error","no-labels":"error","no-lone-blocks":"error","no-lonely-if":"error","no-loop-func":"error","no-loss-of-precision":"error","no-magic-numbers":"off","no-misleading-character-class":"error","no-multi-assign":"error","no-multi-str":"error","no-negated-condition":"error","no-nested-ternary":"error","no-new":"error","no-new-func":"error","no-new-native-nonconstructor":"error","no-new-wrappers":"error","no-nonoctal-decimal-escape":"error","no-obj-calls":"error","no-object-constructor":"error","no-octal":"error","no-octal-escape":"error","no-param-reassign":"error","no-plusplus":"error","no-promise-executor-return":"error","no-proto":"error","no-prototype-builtins":"error","no-redeclare":"off","no-regex-spaces":"error","no-restricted-exports":"off","no-restricted-globals":"off","no-restricted-imports":"off","no-restricted-properties":"off","no-restricted-syntax":"off","no-return-assign":"error","no-script-url":"error","no-self-assign":"error","no-self-compare":"error","no-sequences":"error","no-setter-return":"error","no-shadow":"off","no-shadow-restricted-names":"error","no-sparse-arrays":"error","no-template-curly-in-string":"off","no-ternary":"off","no-this-before-super":"error","no-throw-literal":"off","no-undef":"off","no-undef-init":"error","no-undefined":"off","no-underscore-dangle":"off","no-unexpected-multiline":"off","no-unmodified-loop-condition":"error","no-unneeded-ternary":"error","no-unreachable":"error","no-unreachable-loop":"error","no-unsafe-finally":"error","no-unsafe-negation":"error","no-unsafe-optional-chaining":["error",{disallowArithmeticOperators:!0}],"no-unused-expressions":"off","no-unused-labels":"error","no-unused-private-class-members":"error","no-unused-vars":"off","no-use-before-define":"off","no-useless-assignment":"off","no-useless-backreference":"error","no-useless-call":"error","no-useless-catch":"error","no-useless-computed-key":"error","no-useless-concat":"error","no-useless-constructor":"off","no-useless-escape":"error","no-useless-rename":"error","no-useless-return":"error","no-var":"error","no-void":"error","no-warning-comments":"off","no-with":"error","object-shorthand":"error","one-var":"off","operator-assignment":"error","prefer-arrow-callback":"off","prefer-const":"error","prefer-destructuring":"off","prefer-exponentiation-operator":"error","prefer-named-capture-group":"error","prefer-numeric-literals":"error","prefer-object-has-own":"error","prefer-object-spread":"error","prefer-promise-reject-errors":"off","prefer-regex-literals":"error","prefer-rest-params":"error","prefer-spread":"error","prefer-template":"error",radix:"error","require-atomic-updates":"error","require-await":"off","require-unicode-regexp":"error","require-yield":"error","sort-imports":"off","sort-keys":"off","sort-vars":"error",strict:"error","symbol-description":"error","unicode-bom":"error","use-isnan":"error","valid-typeof":"error","vars-on-top":"error",yoda:["error","always"],"n/callback-return":"off","n/exports-style":["error","exports"],"n/file-extension-in-import":"off","n/global-require":"off","n/handle-callback-err":"error","n/hashbang":"off","n/no-callback-literal":"off","n/no-deprecated-api":"error","n/no-exports-assign":"error","n/no-extraneous-import":"error","n/no-extraneous-require":"error","n/no-missing-import":"off","n/no-missing-require":"error","n/no-mixed-requires":"off","n/no-new-require":"off","n/no-path-concat":"error","n/no-process-env":"off","n/no-process-exit":"off","n/no-restricted-import":"off","n/no-restricted-require":"off","n/no-sync":"off","n/no-unpublished-bin":"error","n/no-unpublished-import":"off","n/no-unpublished-require":"off","n/no-unsupported-features/es-builtins":"error","n/no-unsupported-features/es-syntax":"error","n/no-unsupported-features/node-builtins":"error","n/prefer-global/buffer":"error","n/prefer-global/console":"error","n/prefer-global/process":"error","n/prefer-global/text-decoder":"error","n/prefer-global/text-encoder":"error","n/prefer-global/url":"error","n/prefer-global/url-search-params":"error","n/prefer-node-protocol":"error","n/prefer-promises/dns":"off","n/prefer-promises/fs":"off","n/process-exit-as-throw":"off","@typescript-eslint/adjacent-overload-signatures":"off","@typescript-eslint/array-type":"error","@typescript-eslint/await-thenable":"error","@typescript-eslint/ban-ts-comment":"error","@typescript-eslint/ban-tslint-comment":"error","@typescript-eslint/class-literal-property-style":"error","@typescript-eslint/class-methods-use-this":"off","@typescript-eslint/consistent-generic-constructors":"error","@typescript-eslint/consistent-indexed-object-style":"error","@typescript-eslint/consistent-return":"off","@typescript-eslint/consistent-type-assertions":"error","@typescript-eslint/consistent-type-definitions":["error","type"],"@typescript-eslint/consistent-type-exports":"error","@typescript-eslint/consistent-type-imports":["error",{fixStyle:"inline-type-imports"}],"@typescript-eslint/default-param-last":"error","@typescript-eslint/dot-notation":"error","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/explicit-member-accessibility":"error","@typescript-eslint/explicit-module-boundary-types":"off","@typescript-eslint/init-declarations":"off","@typescript-eslint/max-params":"off","@typescript-eslint/member-ordering":"off","@typescript-eslint/method-signature-style":"error","@typescript-eslint/naming-convention":"off","@typescript-eslint/no-array-constructor":"error","@typescript-eslint/no-array-delete":"error","@typescript-eslint/no-base-to-string":"error","@typescript-eslint/no-confusing-non-null-assertion":"error","@typescript-eslint/no-confusing-void-expression":"error","@typescript-eslint/no-deprecated":"error","@typescript-eslint/no-dupe-class-members":"off","@typescript-eslint/no-duplicate-enum-values":"error","@typescript-eslint/no-duplicate-type-constituents":"error","@typescript-eslint/no-dynamic-delete":"error","@typescript-eslint/no-empty-function":"error","@typescript-eslint/no-empty-object-type":"error","@typescript-eslint/no-explicit-any":"error","@typescript-eslint/no-extra-non-null-assertion":"error","@typescript-eslint/no-extraneous-class":"error","@typescript-eslint/no-floating-promises":"error","@typescript-eslint/no-for-in-array":"error","@typescript-eslint/no-implied-eval":"error","@typescript-eslint/no-import-type-side-effects":"error","@typescript-eslint/no-inferrable-types":"error","@typescript-eslint/no-invalid-this":"off","@typescript-eslint/no-invalid-void-type":"error","@typescript-eslint/no-loop-func":"error","@typescript-eslint/no-magic-numbers":"off","@typescript-eslint/no-meaningless-void-operator":"error","@typescript-eslint/no-misused-new":"error","@typescript-eslint/no-misused-promises":"error","@typescript-eslint/no-misused-spread":"error","@typescript-eslint/no-mixed-enums":"error","@typescript-eslint/no-namespace":"error","@typescript-eslint/no-non-null-asserted-nullish-coalescing":"error","@typescript-eslint/no-non-null-asserted-optional-chain":"error","@typescript-eslint/no-non-null-assertion":"error","@typescript-eslint/no-redeclare":"off","@typescript-eslint/no-redundant-type-constituents":"error","@typescript-eslint/no-require-imports":"error","@typescript-eslint/no-restricted-imports":"error","@typescript-eslint/no-restricted-types":"error","@typescript-eslint/no-shadow":"error","@typescript-eslint/no-this-alias":"error","@typescript-eslint/no-unnecessary-boolean-literal-compare":"error","@typescript-eslint/no-unnecessary-condition":"error","@typescript-eslint/no-unnecessary-parameter-property-assignment":"error","@typescript-eslint/no-unnecessary-qualifier":"error","@typescript-eslint/no-unnecessary-template-expression":"error","@typescript-eslint/no-unnecessary-type-arguments":"error","@typescript-eslint/no-unnecessary-type-assertion":"error","@typescript-eslint/no-unnecessary-type-constraint":"error","@typescript-eslint/no-unnecessary-type-parameters":"off","@typescript-eslint/no-unsafe-argument":"error","@typescript-eslint/no-unsafe-assignment":"error","@typescript-eslint/no-unsafe-call":"error","@typescript-eslint/no-unsafe-declaration-merging":"error","@typescript-eslint/no-unsafe-enum-comparison":"error","@typescript-eslint/no-unsafe-function-type":"error","@typescript-eslint/no-unsafe-member-access":"error","@typescript-eslint/no-unsafe-return":"error","@typescript-eslint/no-unsafe-type-assertion":"error","@typescript-eslint/no-unsafe-unary-minus":"error","@typescript-eslint/no-unused-expressions":"error","@typescript-eslint/no-unused-vars":["error",{args:"all",argsIgnorePattern:"^_",caughtErrors:"all",caughtErrorsIgnorePattern:"^_",destructuredArrayIgnorePattern:"^_",ignoreRestSiblings:!0,varsIgnorePattern:"^_"}],"@typescript-eslint/no-use-before-define":"off","@typescript-eslint/no-useless-constructor":"error","@typescript-eslint/no-useless-empty-export":"error","@typescript-eslint/no-wrapper-object-types":"error","@typescript-eslint/non-nullable-type-assertion-style":"error","@typescript-eslint/only-throw-error":"error","@typescript-eslint/parameter-properties":"off","@typescript-eslint/prefer-as-const":"error","@typescript-eslint/prefer-destructuring":"error","@typescript-eslint/prefer-enum-initializers":"error","@typescript-eslint/prefer-find":"error","@typescript-eslint/prefer-for-of":"error","@typescript-eslint/prefer-function-type":"error","@typescript-eslint/prefer-includes":"error","@typescript-eslint/prefer-literal-enum-member":"error","@typescript-eslint/prefer-namespace-keyword":"error","@typescript-eslint/prefer-nullish-coalescing":"error","@typescript-eslint/prefer-optional-chain":"error","@typescript-eslint/prefer-promise-reject-errors":"error","@typescript-eslint/prefer-readonly":"error","@typescript-eslint/prefer-readonly-parameter-types":"off","@typescript-eslint/prefer-reduce-type-parameter":"error","@typescript-eslint/prefer-regexp-exec":"error","@typescript-eslint/prefer-return-this-type":"error","@typescript-eslint/prefer-string-starts-ends-with":"error","@typescript-eslint/promise-function-async":"error","@typescript-eslint/related-getter-setter-pairs":"error","@typescript-eslint/require-array-sort-compare":"error","@typescript-eslint/require-await":"error","@typescript-eslint/restrict-plus-operands":"error","@typescript-eslint/restrict-template-expressions":"error","@typescript-eslint/return-await":"error","@typescript-eslint/strict-boolean-expressions":"error","@typescript-eslint/switch-exhaustiveness-check":"error","@typescript-eslint/triple-slash-reference":"error","@typescript-eslint/typedef":"off","@typescript-eslint/unbound-method":"error","@typescript-eslint/unified-signatures":"error","@typescript-eslint/use-unknown-in-catch-callback-variable":"error","unicorn/better-regex":"error","unicorn/catch-error-name":"error","unicorn/consistent-destructuring":"error","unicorn/consistent-empty-array-spread":"error","unicorn/consistent-existence-index-check":"error","unicorn/consistent-function-scoping":"error","unicorn/custom-error-definition":"error","unicorn/empty-brace-spaces":"off","unicorn/error-message":"error","unicorn/escape-case":"error","unicorn/expiring-todo-comments":"error","unicorn/explicit-length-check":"off","unicorn/filename-case":"error","unicorn/import-style":"error","unicorn/new-for-builtins":"error","unicorn/no-abusive-eslint-disable":"error","unicorn/no-anonymous-default-export":"error","unicorn/no-array-callback-reference":"error","unicorn/no-array-for-each":"error","unicorn/no-array-method-this-argument":"error","unicorn/no-array-push-push":"error","unicorn/no-array-reduce":"error","unicorn/no-await-expression-member":"error","unicorn/no-await-in-promise-methods":"error","unicorn/no-console-spaces":"error","unicorn/no-document-cookie":"error","unicorn/no-empty-file":"error","unicorn/no-for-loop":"error","unicorn/no-hex-escape":"error","unicorn/no-instanceof-array":"error","unicorn/no-invalid-fetch-options":"error","unicorn/no-invalid-remove-event-listener":"error","unicorn/no-keyword-prefix":"off","unicorn/no-length-as-slice-end":"error","unicorn/no-lonely-if":"error","unicorn/no-magic-array-flat-depth":"error","unicorn/no-negated-condition":"error","unicorn/no-negation-in-equality-check":"error","unicorn/no-nested-ternary":"off","unicorn/no-new-array":"error","unicorn/no-new-buffer":"error","unicorn/no-null":"off","unicorn/no-object-as-default-parameter":"error","unicorn/no-process-exit":"error","unicorn/no-single-promise-in-promise-methods":"error","unicorn/no-static-only-class":"error","unicorn/no-thenable":"error","unicorn/no-this-assignment":"error","unicorn/no-typeof-undefined":"error","unicorn/no-unnecessary-await":"error","unicorn/no-unnecessary-polyfills":"error","unicorn/no-unreadable-array-destructuring":"error","unicorn/no-unreadable-iife":"error","unicorn/no-unused-properties":"error","unicorn/no-useless-fallback-in-spread":"error","unicorn/no-useless-length-check":"error","unicorn/no-useless-promise-resolve-reject":"error","unicorn/no-useless-spread":"error","unicorn/no-useless-switch-case":"error","unicorn/no-useless-undefined":"error","unicorn/no-zero-fractions":"error","unicorn/number-literal-case":"off","unicorn/numeric-separators-style":"error","unicorn/prefer-add-event-listener":"error","unicorn/prefer-array-find":"error","unicorn/prefer-array-flat":"error","unicorn/prefer-array-flat-map":"error","unicorn/prefer-array-index-of":"error","unicorn/prefer-array-some":"error","unicorn/prefer-at":"error","unicorn/prefer-blob-reading-methods":"error","unicorn/prefer-code-point":"error","unicorn/prefer-date-now":"error","unicorn/prefer-default-parameters":"error","unicorn/prefer-dom-node-append":"error","unicorn/prefer-dom-node-dataset":"error","unicorn/prefer-dom-node-remove":"error","unicorn/prefer-dom-node-text-content":"error","unicorn/prefer-event-target":"error","unicorn/prefer-export-from":"error","unicorn/prefer-global-this":"error","unicorn/prefer-includes":"error","unicorn/prefer-json-parse-buffer":"error","unicorn/prefer-keyboard-event-key":"error","unicorn/prefer-logical-operator-over-ternary":"error","unicorn/prefer-math-min-max":"error","unicorn/prefer-math-trunc":"error","unicorn/prefer-modern-dom-apis":"error","unicorn/prefer-modern-math-apis":"error","unicorn/prefer-module":"error","unicorn/prefer-native-coercion-functions":"error","unicorn/prefer-negative-index":"error","unicorn/prefer-node-protocol":"error","unicorn/prefer-number-properties":"error","unicorn/prefer-object-from-entries":"error","unicorn/prefer-optional-catch-binding":"error","unicorn/prefer-prototype-methods":"error","unicorn/prefer-query-selector":"error","unicorn/prefer-reflect-apply":"error","unicorn/prefer-regexp-test":"error","unicorn/prefer-set-has":"error","unicorn/prefer-set-size":"error","unicorn/prefer-spread":"error","unicorn/prefer-string-raw":"error","unicorn/prefer-string-replace-all":"error","unicorn/prefer-string-slice":"error","unicorn/prefer-string-starts-ends-with":"error","unicorn/prefer-string-trim-start-end":"error","unicorn/prefer-structured-clone":"error","unicorn/prefer-switch":"error","unicorn/prefer-ternary":"error","unicorn/prefer-top-level-await":"error","unicorn/prefer-type-error":"error","unicorn/prevent-abbreviations":"error","unicorn/relative-url-style":"error","unicorn/require-array-join-separator":"error","unicorn/require-number-to-fixed-digits-argument":"error","unicorn/require-post-message-target-origin":"error","unicorn/string-content":"error","unicorn/switch-case-braces":"error","unicorn/template-indent":"off","unicorn/text-encoding-identifier-case":"error","unicorn/throw-new-error":"error","lodash/callback-binding":"error","lodash/chain-style":[2,"as-needed"],"lodash/chaining":"error","lodash/collection-method-value":"error","lodash/collection-ordering":"error","lodash/collection-return":"error","lodash/consistent-compose":[2,"flow"],"lodash/identity-shorthand":[2,"always"],"lodash/import-scope":[2,"method"],"lodash/matches-prop-shorthand":[2,"always"],"lodash/matches-shorthand":[2,"always",3],"lodash/no-commit":"error","lodash/no-double-unwrap":"error","lodash/no-extra-args":"error","lodash/no-unbound-this":"error","lodash/path-style":[2,"array"],"lodash/prefer-compact":"error","lodash/prefer-constant":"error","lodash/prefer-filter":"error","lodash/prefer-find":"error","lodash/prefer-flat-map":"error","lodash/prefer-get":"error","lodash/prefer-immutable-method":"error","lodash/prefer-includes":[2,{includeNative:!0}],"lodash/prefer-invoke-map":"error","lodash/prefer-is-nil":"error","lodash/prefer-lodash-chain":"error","lodash/prefer-lodash-method":"error","lodash/prefer-lodash-typecheck":"error","lodash/prefer-map":"error","lodash/prefer-matches":"error","lodash/prefer-noop":"error","lodash/prefer-over-quantifier":"error","lodash/prefer-reject":"error","lodash/prefer-some":[2,{includeNative:!0}],"lodash/prefer-startswith":"error","lodash/prefer-thru":"error","lodash/prefer-times":"error","lodash/prefer-wrapper-method":"error","lodash/preferred-alias":"error","lodash/prop-shorthand":[2,"always"],"lodash/unwrap":"error","sonar/anchor-precedence":"error","sonar/argument-type":"error","sonar/arguments-order":"error","sonar/arguments-usage":"error","sonar/array-callback-without-return":"error","sonar/array-constructor":"error","sonar/arrow-function-convention":"off","sonar/assertions-in-tests":"error","sonar/aws-apigateway-public-api":"error","sonar/aws-ec2-rds-dms-public":"error","sonar/aws-ec2-unencrypted-ebs-volume":"error","sonar/aws-efs-unencrypted":"error","sonar/aws-iam-all-privileges":"error","sonar/aws-iam-all-resources-accessible":"error","sonar/aws-iam-privilege-escalation":"error","sonar/aws-iam-public-access":"error","sonar/aws-opensearchservice-domain":"error","sonar/aws-rds-unencrypted-databases":"error","sonar/aws-restricted-ip-admin-access":"error","sonar/aws-s3-bucket-granted-access":"error","sonar/aws-s3-bucket-insecure-http":"error","sonar/aws-s3-bucket-public-access":"error","sonar/aws-s3-bucket-versioning":"error","sonar/aws-sagemaker-unencrypted-notebook":"error","sonar/aws-sns-unencrypted-topics":"error","sonar/aws-sqs-unencrypted-queue":"error","sonar/bitwise-operators":"error","sonar/block-scoped-var":"error","sonar/bool-param-default":"error","sonar/call-argument-line":"error","sonar/certificate-transparency":"error","sonar/chai-determinate-assertion":"error","sonar/class-name":"error","sonar/class-prototype":"error","sonar/code-eval":"error","sonar/cognitive-complexity":"error","sonar/comma-or-logical-or-case":"error","sonar/comment-regex":"off","sonar/concise-regex":"error","sonar/confidential-information-logging":"error","sonar/constructor-for-side-effects":"error","sonar/content-length":"error","sonar/content-security-policy":"error","sonar/cookie-no-httponly":"error","sonar/cors":"error","sonar/csrf":"error","sonar/cyclomatic-complexity":"off","sonar/declarations-in-global-scope":"error","sonar/deprecation":"error","sonar/destructuring-assignment-syntax":"error","sonar/different-types-comparison":"error","sonar/disabled-auto-escaping":"error","sonar/disabled-resource-integrity":"error","sonar/disabled-timeout":"error","sonar/duplicates-in-character-class":"error","sonar/elseif-without-else":"error","sonar/empty-string-repetition":"error","sonar/encryption-secure-mode":"error","sonar/existing-groups":"error","sonar/expression-complexity":"error","sonar/file-header":"off","sonar/file-name-differ-from-class":"error","sonar/file-permissions":"error","sonar/file-uploads":"error","sonar/fixme-tag":"error","sonar/for-in":"error","sonar/for-loop-increment-sign":"error","sonar/frame-ancestors":"error","sonar/function-inside-loop":"error","sonar/function-name":["error",{format:"^(?:[a-z][a-zA-Z0-9]*|[A-Z][A-Z0-9]*)$"}],"sonar/function-return-type":"off","sonar/future-reserved-words":"error","sonar/generator-without-yield":"error","sonar/hashing":"error","sonar/hidden-files":"error","sonar/in-operator-type-error":"error","sonar/inconsistent-function-call":"error","sonar/index-of-compare-to-positive-number":"error","sonar/insecure-cookie":"error","sonar/insecure-jwt-token":"error","sonar/inverted-assertion-arguments":"error","sonar/jsx-no-leaked-render":"error","sonar/label-position":"error","sonar/link-with-target-blank":"error","sonar/max-lines":"error","sonar/max-lines-per-function":"error","sonar/max-switch-cases":"error","sonar/max-union-size":"off","sonar/misplaced-loop-counter":"error","sonar/nested-control-flow":"error","sonar/new-operator-misuse":"error","sonar/no-all-duplicated-branches":"error","sonar/no-alphabetical-sort":"error","sonar/no-angular-bypass-sanitization":"error","sonar/no-array-delete":"error","sonar/no-associative-arrays":"error","sonar/no-async-constructor":"error","sonar/no-built-in-override":"error","sonar/no-case-label-in-switch":"error","sonar/no-clear-text-protocols":"error","sonar/no-code-after-done":"error","sonar/no-collapsible-if":"error","sonar/no-collection-size-mischeck":"error","sonar/no-commented-code":"error","sonar/no-control-regex":"error","sonar/no-dead-store":"error","sonar/no-delete-var":"error","sonar/no-duplicate-in-composite":"error","sonar/no-duplicate-string":"error","sonar/no-duplicated-branches":"error","sonar/no-element-overwrite":"error","sonar/no-empty-after-reluctant":"error","sonar/no-empty-alternatives":"error","sonar/no-empty-character-class":"error","sonar/no-empty-collection":"error","sonar/no-empty-group":"error","sonar/no-empty-test-file":"error","sonar/no-equals-in-for-termination":"error","sonar/no-exclusive-tests":"error","sonar/no-extra-arguments":"error","sonar/no-fallthrough":"error","sonar/no-for-in-iterable":"error","sonar/no-function-declaration-in-block":"error","sonar/no-global-this":"error","sonar/no-globals-shadowing":"error","sonar/no-gratuitous-expressions":"error","sonar/no-hardcoded-ip":"error","sonar/no-hardcoded-passwords":"error","sonar/no-hardcoded-secrets":"error","sonar/no-hook-setter-in-body":"error","sonar/no-identical-conditions":"error","sonar/no-identical-expressions":"error","sonar/no-identical-functions":"error","sonar/no-ignored-exceptions":"error","sonar/no-ignored-return":"error","sonar/no-implicit-dependencies":"off","sonar/no-implicit-global":"error","sonar/no-in-misuse":"error","sonar/no-incomplete-assertions":"error","sonar/no-inconsistent-returns":"off","sonar/no-incorrect-string-concat":"error","sonar/no-internal-api-use":"error","sonar/no-intrusive-permissions":"error","sonar/no-invalid-await":"error","sonar/no-invalid-regexp":"error","sonar/no-invariant-returns":"error","sonar/no-inverted-boolean-check":"error","sonar/no-ip-forward":"error","sonar/no-labels":"error","sonar/no-literal-call":"error","sonar/no-mime-sniff":"error","sonar/no-misleading-array-reverse":"error","sonar/no-misleading-character-class":"error","sonar/no-mixed-content":"error","sonar/no-nested-assignment":"error","sonar/no-nested-conditional":"error","sonar/no-nested-functions":"error","sonar/no-nested-incdec":"error","sonar/no-nested-switch":"error","sonar/no-nested-template-literals":"error","sonar/no-one-iteration-loop":"error","sonar/no-os-command-from-path":"error","sonar/no-parameter-reassignment":"error","sonar/no-primitive-wrappers":"error","sonar/no-redundant-assignments":"error","sonar/no-redundant-boolean":"error","sonar/no-redundant-jump":"error","sonar/no-redundant-optional":"error","sonar/no-reference-error":"error","sonar/no-referrer-policy":"error","sonar/no-regex-spaces":"error","sonar/no-require-or-define":"error","sonar/no-return-type-any":"error","sonar/no-same-argument-assert":"error","sonar/no-same-line-conditional":"error","sonar/no-selector-parameter":"error","sonar/no-skipped-tests":"error","sonar/no-small-switch":"error","sonar/no-sonar-comments":"error","sonar/no-table-as-layout":"error","sonar/no-try-promise":"error","sonar/no-undefined-argument":"error","sonar/no-undefined-assignment":"off","sonar/no-unenclosed-multiline-block":"error","sonar/no-uniq-key":"error","sonar/no-unsafe-unzip":"error","sonar/no-unthrown-error":"error","sonar/no-unused-collection":"error","sonar/no-unused-function-argument":"error","sonar/no-unused-vars":"error","sonar/no-use-of-empty-return-value":"error","sonar/no-useless-catch":"error","sonar/no-useless-increment":"error","sonar/no-useless-intersection":"error","sonar/no-useless-react-setstate":"error","sonar/no-variable-usage-before-declaration":"error","sonar/no-weak-cipher":"error","sonar/no-weak-keys":"error","sonar/no-wildcard-import":"error","sonar/non-existent-operator":"error","sonar/non-number-in-arithmetic-expression":"error","sonar/null-dereference":"error","sonar/object-alt-content":"error","sonar/operation-returning-nan":"error","sonar/os-command":"error","sonar/post-message":"error","sonar/prefer-default-last":"error","sonar/prefer-immediate-return":"error","sonar/prefer-object-literal":"error","sonar/prefer-promise-shorthand":"error","sonar/prefer-read-only-props":"error","sonar/prefer-regexp-exec":"error","sonar/prefer-single-boolean-return":"error","sonar/prefer-type-guard":"error","sonar/prefer-while":"error","sonar/production-debug":"error","sonar/pseudo-random":"error","sonar/public-static-readonly":"error","sonar/publicly-writable-directories":"error","sonar/reduce-initial-value":"error","sonar/redundant-type-aliases":"error","sonar/regex-complexity":"error","sonar/session-regeneration":"error","sonar/shorthand-property-grouping":"off","sonar/single-char-in-character-classes":"error","sonar/single-character-alternation":"error","sonar/slow-regex":"error","sonar/sql-queries":"error","sonar/stable-tests":"error","sonar/stateful-regex":"error","sonar/strict-transport-security":"error","sonar/strings-comparison":"error","sonar/super-invocation":"error","sonar/table-header":"error","sonar/table-header-reference":"error","sonar/test-check-exception":"error","sonar/todo-tag":"off","sonar/too-many-break-or-continue-in-loop":"error","sonar/unicode-aware-regex":"error","sonar/unused-import":"error","sonar/unused-named-groups":"error","sonar/unverified-certificate":"error","sonar/unverified-hostname":"error","sonar/updated-const-var":"error","sonar/updated-loop-counter":"error","sonar/use-type-alias":"error","sonar/values-not-convertible-to-numbers":"error","sonar/variable-name":"error","sonar/void-use":"error","sonar/weak-ssl":"error","sonar/x-powered-by":"error","sonar/xml-parser-xxe":"error","tailwind/classnames-order":"error","tailwind/enforces-negative-arbitrary-values":"error","tailwind/enforces-shorthand":"error","tailwind/migration-from-tailwind-2":"error","tailwind/no-arbitrary-value":"error","tailwind/no-contradicting-classname":"error","tailwind/no-custom-classname":"off","tailwind/no-unnecessary-arbitrary-value":"error","perfectionist/sort-array-includes":"error","perfectionist/sort-classes":"error","perfectionist/sort-decorators":"error","perfectionist/sort-enums":"error","perfectionist/sort-exports":"error","perfectionist/sort-heritage-clauses":"error","perfectionist/sort-imports":["error",{groups:["type",["builtin","external"],"internal-type","internal",["parent-type","sibling-type","index-type"],["parent","sibling","index"],"object","unknown"],newlinesBetween:"always"}],"perfectionist/sort-interfaces":"error","perfectionist/sort-intersection-types":"error","perfectionist/sort-jsx-props":["error",{groups:["shorthand","multiline"]}],"perfectionist/sort-maps":"error","perfectionist/sort-modules":"error","perfectionist/sort-named-exports":"error","perfectionist/sort-named-imports":"error","perfectionist/sort-object-types":"error","perfectionist/sort-objects":["error",{partitionByComment:!0}],"perfectionist/sort-sets":"error","perfectionist/sort-switch-case":["error",{order:"asc",type:"alphabetical"}],"perfectionist/sort-union-types":"error","perfectionist/sort-variable-declarations":["error",{order:"asc",type:"alphabetical"}],"@tanstack/query/exhaustive-deps":"error","@tanstack/query/infinite-query-property-order":"error","@tanstack/query/no-rest-destructuring":"error","@tanstack/query/no-unstable-deps":"error","@tanstack/query/stable-query-client":"error","@tanstack/router/create-route-property-order":"error","a11y/alt-text":"error","a11y/anchor-ambiguous-text":"error","a11y/anchor-has-content":"error","a11y/anchor-is-valid":"error","a11y/aria-activedescendant-has-tabindex":"error","a11y/aria-props":"error","a11y/aria-proptypes":"error","a11y/aria-role":"error","a11y/aria-unsupported-elements":"error","a11y/autocomplete-valid":"error","a11y/click-events-have-key-events":"error","a11y/control-has-associated-label":"off","a11y/heading-has-content":"error","a11y/html-has-lang":"error","a11y/iframe-has-title":"error","a11y/img-redundant-alt":"error","a11y/interactive-supports-focus":"error","a11y/label-has-associated-control":"error","a11y/lang":"error","a11y/media-has-caption":"off","a11y/mouse-events-have-key-events":"error","a11y/no-access-key":"error","a11y/no-aria-hidden-on-focusable":"error","a11y/no-autofocus":"error","a11y/no-distracting-elements":"error","a11y/no-interactive-element-to-noninteractive-role":"error","a11y/no-noninteractive-element-interactions":"error","a11y/no-noninteractive-element-to-interactive-role":"error","a11y/no-noninteractive-tabindex":"error","a11y/no-redundant-roles":"error","a11y/no-static-element-interactions":"error","a11y/prefer-tag-over-role":"error","a11y/role-has-required-aria-props":"error","a11y/role-supports-aria-props":"error","a11y/scope":"error","a11y/tabindex-no-positive":"error","array-bracket-newline":"off","array-bracket-spacing":"off","array-element-newline":"off","arrow-parens":"off","arrow-spacing":"off","block-spacing":"off","brace-style":"off","callback-return":"off","comma-dangle":"off","comma-spacing":"off","comma-style":"off","computed-property-spacing":"off","dot-location":"off","eol-last":"off","func-call-spacing":"off","function-call-argument-newline":"off","function-paren-newline":"off","generator-star-spacing":"off","global-require":"off","handle-callback-err":"off","id-blacklist":"off","implicit-arrow-linebreak":"off",indent:"off","indent-legacy":"off","jsx-quotes":"off","key-spacing":"off","keyword-spacing":"off","line-comment-position":"off","linebreak-style":"off","lines-around-comment":"off","lines-around-directive":"off","lines-between-class-members":"off","max-len":"off","max-statements-per-line":"off","multiline-comment-style":"off","multiline-ternary":"off","new-parens":"off","newline-after-var":"off","newline-before-return":"off","newline-per-chained-call":"off","no-buffer-constructor":"off","no-catch-shadow":"off","no-confusing-arrow":"off","no-extra-parens":"off","no-extra-semi":"off","no-floating-decimal":"off","no-mixed-operators":"off","no-mixed-requires":"off","no-mixed-spaces-and-tabs":"off","no-multi-spaces":"off","no-multiple-empty-lines":"off","no-native-reassign":"off","no-negated-in-lhs":"off","no-new-object":"off","no-new-require":"off","no-new-symbol":"off","no-path-concat":"off","no-process-env":"off","no-process-exit":"off","no-restricted-modules":"off","no-return-await":"off","no-spaced-func":"off","no-sync":"off","no-tabs":"off","no-trailing-spaces":"off","no-whitespace-before-property":"off","nonblock-statement-body-position":"off","object-curly-newline":"off","object-curly-spacing":"off","object-property-newline":"off","one-var-declaration-per-line":"off","operator-linebreak":"off","padded-blocks":"off","padding-line-between-statements":"off","prefer-reflect":"off","quote-props":"off",quotes:"off","rest-spread-spacing":"off",semi:"off","semi-spacing":"off","semi-style":"off","space-before-blocks":"off","space-before-function-paren":"off","space-in-parens":"off","space-infix-ops":"off","space-unary-ops":"off","spaced-comment":"off","switch-colon-spacing":"off","template-curly-spacing":"off","template-tag-spacing":"off","wrap-iife":"off","wrap-regex":"off","yield-star-spacing":"off","cspell/spellchecker":["error",{cspell:{words:["typicode","toolbelt","taze","ethang","TSESTree","Boop","cldr","astro","laravel","qwik","sitecore","uswds","mediat","Packt","Academind","Udemy","Colte","Bootcamp","HTMX","MERN","Nuxt","Credly","Sterett","Beyonder","hotspot","lqip","Hawn","nextui","speculationrules","zustand","vinxi","datasource","turso","supabase","solidjs","labelledby","svix","blockqoute","cortexjs","mathrm","nums","lifecycles","krausest","Signalis","Plass","Iteree","Sonner","cmdk","ngsw","dexie","leetcode","ngsrc","sindresorhus"]}}]}},{files:["**/*.md"],plugins:{markdown:d},rules:{"markdown/fenced-code-language":"error","markdown/heading-increment":"error","markdown/no-duplicate-headings":"error","markdown/no-empty-links":"error","markdown/no-html":"error","markdown/no-invalid-label-refs":"error","markdown/no-missing-label-refs":"error"}},{files:["**/*.json"],language:"json/json",plugins:{json:r},rules:{"json/no-duplicate-keys":"error","json/no-empty-keys":"error","json/no-unnormalized-keys":"error","json/no-unsafe-values":"error","json/sort-keys":"error","json/top-level-interop":"error"}},{files:["**/*.jsonc"],language:"json/jsonc",plugins:{json:r},rules:{"json/no-duplicate-keys":"error","json/no-empty-keys":"error","json/no-unnormalized-keys":"error","json/no-unsafe-values":"error","json/sort-keys":"error","json/top-level-interop":"error"}},{files:["**/*.json5"],language:"json/json5",plugins:{json:r},rules:{"json/no-duplicate-keys":"error","json/no-empty-keys":"error","json/no-unnormalized-keys":"error","json/no-unsafe-values":"error","json/sort-keys":"error","json/top-level-interop":"error"}},l,f);export{F as default};
2
+ //# sourceMappingURL=eslint.config.js.map