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