@planet-matrix/mobius-mono 0.3.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.
@@ -0,0 +1,1771 @@
1
+ {
2
+ "$schema": "../../node_modules/oxlint/configuration_schema.json",
3
+ // Paths of configuration files that this configuration file extends (inherits from).
4
+ "extends": [],
5
+ "plugins": [],
6
+ "jsPlugins": [],
7
+ "settings": {},
8
+ // Globs to ignore during linting.
9
+ "ignorePatterns": [
10
+ "dist"
11
+ ],
12
+ // Predefine global variables.
13
+ "env": {},
14
+ // Add or remove global variables.
15
+ "globals": {},
16
+ // Configure an entire category of rules all at once.
17
+ "categories": {},
18
+ "rules": {},
19
+ "overrides": [
20
+ {
21
+ "files": [
22
+ "*.ts"
23
+ ],
24
+ "env": {
25
+ "browser": true,
26
+ "node": true,
27
+ "shared-node-browser": true,
28
+ "es2024": true,
29
+ "worker": true,
30
+ "serviceworker": true,
31
+ "webextensions": true,
32
+ "commonjs": true,
33
+ "amd": true
34
+ },
35
+ "globals": {},
36
+ "jsPlugins": [],
37
+ "plugins": [
38
+ "eslint",
39
+ "typescript",
40
+ "unicorn",
41
+ "oxc",
42
+ "import",
43
+ "jsdoc",
44
+ "node",
45
+ "promise",
46
+ ],
47
+ "rules": {
48
+ // correctness
49
+ "eslint/constructor-super": [
50
+ "error"
51
+ ],
52
+ "eslint/for-direction": [
53
+ "error"
54
+ ],
55
+ "eslint/no-async-promise-executor": [
56
+ "error"
57
+ ],
58
+ "eslint/no-caller": [
59
+ "error"
60
+ ],
61
+ "eslint/no-class-assign": [
62
+ "error"
63
+ ],
64
+ "eslint/no-compare-neg-zero": [
65
+ "error"
66
+ ],
67
+ "eslint/no-cond-assign": [
68
+ "error"
69
+ ],
70
+ "eslint/no-const-assign": [
71
+ "error"
72
+ ],
73
+ "eslint/no-constant-binary-expression": [
74
+ "error"
75
+ ],
76
+ "eslint/no-constant-condition": [
77
+ "error"
78
+ ],
79
+ "eslint/no-control-regex": [
80
+ "off"
81
+ ],
82
+ "eslint/no-debugger": [
83
+ "off"
84
+ ],
85
+ "eslint/no-delete-var": [
86
+ "error"
87
+ ],
88
+ "eslint/no-dupe-class-members": [
89
+ "error"
90
+ ],
91
+ "eslint/no-dupe-else-if": [
92
+ "error"
93
+ ],
94
+ "eslint/no-dupe-keys": [
95
+ "error"
96
+ ],
97
+ "eslint/no-duplicate-case": [
98
+ "error"
99
+ ],
100
+ "eslint/no-empty-character-class": [
101
+ "off"
102
+ ],
103
+ "eslint/no-empty-pattern": [
104
+ "error"
105
+ ],
106
+ "eslint/no-empty-static-block": [
107
+ "error"
108
+ ],
109
+ "eslint/no-eval": [
110
+ "error"
111
+ ],
112
+ "eslint/no-ex-assign": [
113
+ "error"
114
+ ],
115
+ "eslint/no-extra-boolean-cast": [
116
+ "error"
117
+ ],
118
+ "eslint/no-func-assign": [
119
+ "error"
120
+ ],
121
+ "eslint/no-global-assign": [
122
+ "error"
123
+ ],
124
+ "eslint/no-import-assign": [
125
+ "error"
126
+ ],
127
+ "eslint/no-invalid-regexp": [
128
+ "error"
129
+ ],
130
+ "eslint/no-irregular-whitespace": [
131
+ "error"
132
+ ],
133
+ "eslint/no-loss-of-precision": [
134
+ "error"
135
+ ],
136
+ "eslint/no-new-native-nonconstructor": [
137
+ "error"
138
+ ],
139
+ "eslint/no-nonoctal-decimal-escape": [
140
+ "error"
141
+ ],
142
+ "eslint/no-obj-calls": [
143
+ "error"
144
+ ],
145
+ "eslint/no-self-assign": [
146
+ "error"
147
+ ],
148
+ "eslint/no-setter-return": [
149
+ "error"
150
+ ],
151
+ "eslint/no-shadow-restricted-names": [
152
+ "error",
153
+ {
154
+ "reportGlobalThis": true
155
+ }
156
+ ],
157
+ "eslint/no-sparse-arrays": [
158
+ "error"
159
+ ],
160
+ "eslint/no-this-before-super": [
161
+ "error"
162
+ ],
163
+ "eslint/no-unassigned-vars": [
164
+ "error"
165
+ ],
166
+ "eslint/no-unsafe-finally": [
167
+ "error"
168
+ ],
169
+ "eslint/no-unsafe-negation": [
170
+ "error",
171
+ {
172
+ "enforceForOrderingRelations": true
173
+ }
174
+ ],
175
+ "eslint/no-unsafe-optional-chaining": [
176
+ "error"
177
+ ],
178
+ "eslint/no-unused-expressions": [
179
+ "error"
180
+ ],
181
+ "eslint/no-unused-labels": [
182
+ "error"
183
+ ],
184
+ "eslint/no-unused-private-class-members": [
185
+ "error"
186
+ ],
187
+ "eslint/no-unused-vars": [
188
+ "error"
189
+ ],
190
+ "eslint/no-useless-backreference": [
191
+ "error"
192
+ ],
193
+ "eslint/no-useless-catch": [
194
+ "error"
195
+ ],
196
+ "eslint/no-useless-escape": [
197
+ "error"
198
+ ],
199
+ "eslint/no-useless-rename": [
200
+ "error"
201
+ ],
202
+ "eslint/no-with": [
203
+ "off"
204
+ ],
205
+ "eslint/require-yield": [
206
+ "error"
207
+ ],
208
+ "eslint/use-isnan": [
209
+ "error"
210
+ ],
211
+ "eslint/valid-typeof": [
212
+ "error"
213
+ ],
214
+ "import/default": [
215
+ "error"
216
+ ],
217
+ "import/namespace": [
218
+ "error"
219
+ ],
220
+ "jsdoc/check-property-names": [
221
+ "error"
222
+ ],
223
+ "jsdoc/check-tag-names": [
224
+ "error"
225
+ ],
226
+ "jsdoc/implements-on-classes": [
227
+ "error"
228
+ ],
229
+ "jsdoc/no-defaults": [
230
+ "error"
231
+ ],
232
+ "jsdoc/require-property": [
233
+ "error"
234
+ ],
235
+ "jsdoc/require-property-description": [
236
+ "error"
237
+ ],
238
+ "jsdoc/require-property-name": [
239
+ "error"
240
+ ],
241
+ "jsdoc/require-property-type": [
242
+ "error"
243
+ ],
244
+ "jsdoc/require-yields": [
245
+ "error"
246
+ ],
247
+ "oxc/bad-array-method-on-arguments": [
248
+ "error"
249
+ ],
250
+ "oxc/bad-char-at-comparison": [
251
+ "error"
252
+ ],
253
+ "oxc/bad-comparison-sequence": [
254
+ "error"
255
+ ],
256
+ "oxc/bad-min-max-func": [
257
+ "error"
258
+ ],
259
+ "oxc/bad-object-literal-comparison": [
260
+ "error"
261
+ ],
262
+ "oxc/bad-replace-all-arg": [
263
+ "error"
264
+ ],
265
+ "oxc/const-comparisons": [
266
+ "error"
267
+ ],
268
+ "oxc/double-comparisons": [
269
+ "error"
270
+ ],
271
+ "oxc/erasing-op": [
272
+ "error"
273
+ ],
274
+ "oxc/missing-throw": [
275
+ "error"
276
+ ],
277
+ "oxc/number-arg-out-of-range": [
278
+ "error"
279
+ ],
280
+ "oxc/only-used-in-recursion": [
281
+ "error"
282
+ ],
283
+ "oxc/uninvoked-array-callback": [
284
+ "error"
285
+ ],
286
+ "promise/no-callback-in-promise": [
287
+ "off"
288
+ ],
289
+ "promise/no-new-statics": [
290
+ "error"
291
+ ],
292
+ "promise/valid-params": [
293
+ "error"
294
+ ],
295
+ "typescript/await-thenable": [
296
+ "error"
297
+ ],
298
+ "typescript/no-array-delete": [
299
+ "error"
300
+ ],
301
+ "typescript/no-base-to-string": [
302
+ "error"
303
+ ],
304
+ "typescript/no-duplicate-enum-values": [
305
+ "error"
306
+ ],
307
+ "typescript/no-duplicate-type-constituents": [
308
+ "off"
309
+ ],
310
+ "typescript/no-extra-non-null-assertion": [
311
+ "error"
312
+ ],
313
+ "typescript/no-floating-promises": [
314
+ "error"
315
+ ],
316
+ "typescript/no-for-in-array": [
317
+ "error"
318
+ ],
319
+ "typescript/no-implied-eval": [
320
+ "error"
321
+ ],
322
+ "typescript/no-meaningless-void-operator": [
323
+ "error"
324
+ ],
325
+ "typescript/no-misused-new": [
326
+ "error"
327
+ ],
328
+ "typescript/no-misused-spread": [
329
+ "error"
330
+ ],
331
+ "typescript/no-non-null-asserted-optional-chain": [
332
+ "error"
333
+ ],
334
+ "typescript/no-redundant-type-constituents": [
335
+ "error"
336
+ ],
337
+ "typescript/no-this-alias": [
338
+ "error",
339
+ {
340
+ "allowDestructuring": false,
341
+ "allowedNames": []
342
+ }
343
+ ],
344
+ "typescript/no-unnecessary-parameter-property-assignment": [
345
+ "off"
346
+ ],
347
+ "typescript/no-unsafe-declaration-merging": [
348
+ "error"
349
+ ],
350
+ "typescript/no-unsafe-unary-minus": [
351
+ "error"
352
+ ],
353
+ "typescript/no-useless-empty-export": [
354
+ "error"
355
+ ],
356
+ "typescript/no-wrapper-object-types": [
357
+ "error"
358
+ ],
359
+ "typescript/prefer-as-const": [
360
+ "error"
361
+ ],
362
+ "typescript/require-array-sort-compare": [
363
+ "error"
364
+ ],
365
+ "typescript/restrict-template-expressions": [
366
+ "error"
367
+ ],
368
+ "typescript/triple-slash-reference": [
369
+ "error"
370
+ ],
371
+ "typescript/unbound-method": [
372
+ "off"
373
+ ],
374
+ "unicorn/no-await-in-promise-methods": [
375
+ "error"
376
+ ],
377
+ "unicorn/no-empty-file": [
378
+ "error"
379
+ ],
380
+ "unicorn/no-invalid-fetch-options": [
381
+ "error"
382
+ ],
383
+ "unicorn/no-invalid-remove-event-listener": [
384
+ "error"
385
+ ],
386
+ "unicorn/no-new-array": [
387
+ "error"
388
+ ],
389
+ "unicorn/no-single-promise-in-promise-methods": [
390
+ "error"
391
+ ],
392
+ "unicorn/no-thenable": [
393
+ "error"
394
+ ],
395
+ "unicorn/no-unnecessary-await": [
396
+ "error"
397
+ ],
398
+ "unicorn/no-useless-fallback-in-spread": [
399
+ "error"
400
+ ],
401
+ "unicorn/no-useless-length-check": [
402
+ "error"
403
+ ],
404
+ "unicorn/no-useless-spread": [
405
+ "error"
406
+ ],
407
+ "unicorn/prefer-set-size": [
408
+ "error"
409
+ ],
410
+ "unicorn/prefer-string-starts-ends-with": [
411
+ "error"
412
+ ],
413
+ // perf
414
+ "eslint/no-await-in-loop": [
415
+ "off"
416
+ ],
417
+ "eslint/no-useless-call": [
418
+ "error"
419
+ ],
420
+ "oxc/no-accumulating-spread": [
421
+ "error"
422
+ ],
423
+ "oxc/no-map-spread": [
424
+ "error"
425
+ ],
426
+ "unicorn/prefer-array-find": [
427
+ "error"
428
+ ],
429
+ "unicorn/prefer-array-flat-map": [
430
+ "off"
431
+ ],
432
+ "unicorn/prefer-set-has": [
433
+ "off"
434
+ ],
435
+ // restriction
436
+ "eslint/class-methods-use-this": [
437
+ "off"
438
+ ],
439
+ "eslint/default-case": [
440
+ "error"
441
+ ],
442
+ "eslint/no-alert": [
443
+ "error"
444
+ ],
445
+ "eslint/no-bitwise": [
446
+ "off"
447
+ ],
448
+ "eslint/no-console": [
449
+ "off"
450
+ ],
451
+ "eslint/no-div-regex": [
452
+ "off"
453
+ ],
454
+ "eslint/no-empty": [
455
+ "off"
456
+ ],
457
+ "eslint/no-empty-function": [
458
+ "error"
459
+ ],
460
+ "eslint/no-eq-null": [
461
+ "error"
462
+ ],
463
+ "eslint/no-iterator": [
464
+ "error"
465
+ ],
466
+ "eslint/no-param-reassign": [
467
+ "error"
468
+ ],
469
+ "eslint/no-plusplus": [
470
+ "error"
471
+ ],
472
+ "eslint/no-proto": [
473
+ "error"
474
+ ],
475
+ "eslint/no-regex-spaces": [
476
+ "error"
477
+ ],
478
+ "eslint/no-restricted-globals": [
479
+ "error",
480
+ {}
481
+ ],
482
+ "eslint/no-restricted-imports": [
483
+ "error",
484
+ {}
485
+ ],
486
+ "eslint/no-sequences": [
487
+ "error",
488
+ {
489
+ "allowInParentheses": true
490
+ }
491
+ ],
492
+ "eslint/no-undefined": [
493
+ "off"
494
+ ],
495
+ "eslint/no-var": [
496
+ "error"
497
+ ],
498
+ "eslint/no-void": [
499
+ "off"
500
+ ],
501
+ "eslint/unicode-bom": [
502
+ "error",
503
+ "never"
504
+ ],
505
+ "import/extensions": [
506
+ "error",
507
+ {
508
+ "checkTypeImports": true,
509
+ "ignorePackages": true,
510
+ "js": "never",
511
+ "json": "always",
512
+ "jsx": "always",
513
+ "requireExtension": null,
514
+ "ts": "never",
515
+ "tsx": "always"
516
+ }
517
+ ],
518
+ "import/no-amd": [
519
+ "error"
520
+ ],
521
+ "import/no-commonjs": [
522
+ "error"
523
+ ],
524
+ "import/no-cycle": [
525
+ "error"
526
+ ],
527
+ "import/no-default-export": [
528
+ "off",
529
+ ],
530
+ "import/no-dynamic-require": [
531
+ "error"
532
+ ],
533
+ "import/no-webpack-loader-syntax": [
534
+ "error"
535
+ ],
536
+ "import/unambiguous": [
537
+ "off"
538
+ ],
539
+ "jsdoc/check-access": [
540
+ "error"
541
+ ],
542
+ "jsdoc/empty-tags": [
543
+ "error"
544
+ ],
545
+ "node/no-new-require": [
546
+ "error"
547
+ ],
548
+ "node/no-process-env": [
549
+ "error"
550
+ ],
551
+ "oxc/bad-bitwise-operator": [
552
+ "off"
553
+ ],
554
+ "oxc/no-async-await": [
555
+ "off"
556
+ ],
557
+ "oxc/no-barrel-file": [
558
+ "off"
559
+ ],
560
+ "oxc/no-const-enum": [
561
+ "error"
562
+ ],
563
+ "oxc/no-optional-chaining": [
564
+ "off"
565
+ ],
566
+ "oxc/no-rest-spread-properties": [
567
+ "off"
568
+ ],
569
+ "promise/catch-or-return": [
570
+ "error"
571
+ ],
572
+ "promise/spec-only": [
573
+ "error"
574
+ ],
575
+ "typescript/explicit-function-return-type": [
576
+ "error",
577
+ {
578
+ "allowConciseArrowFunctionExpressionsStartingWithVoid": false,
579
+ "allowDirectConstAssertionInArrowFunctions": true,
580
+ "allowExpressions": false,
581
+ "allowFunctionsWithoutTypeParameters": false,
582
+ "allowHigherOrderFunctions": true,
583
+ "allowIIFEs": false,
584
+ "allowTypedFunctionExpressions": true,
585
+ "allowedNames": []
586
+ }
587
+ ],
588
+ "typescript/explicit-module-boundary-types": [
589
+ "error",
590
+ {
591
+ "allowArgumentsExplicitlyTypedAsAny": false,
592
+ "allowDirectConstAssertionInArrowFunctions": true,
593
+ "allowHigherOrderFunctions": true,
594
+ "allowOverloadFunctions": false,
595
+ "allowTypedFunctionExpressions": true,
596
+ "allowedNames": []
597
+ }
598
+ ],
599
+ "typescript/no-dynamic-delete": [
600
+ "error"
601
+ ],
602
+ "typescript/no-empty-object-type": [
603
+ "error",
604
+ {
605
+ "allowInterfaces": "always",
606
+ "allowObjectTypes": "never"
607
+ }
608
+ ],
609
+ "typescript/no-explicit-any": [
610
+ "error"
611
+ ],
612
+ "typescript/no-import-type-side-effects": [
613
+ "error"
614
+ ],
615
+ "typescript/no-namespace": [
616
+ "error",
617
+ {
618
+ "allowDeclarations": true,
619
+ "allowDefinitionFiles": true
620
+ }
621
+ ],
622
+ "typescript/no-non-null-asserted-nullish-coalescing": [
623
+ "error"
624
+ ],
625
+ "typescript/no-non-null-assertion": [
626
+ "off"
627
+ ],
628
+ "typescript/no-require-imports": [
629
+ "error"
630
+ ],
631
+ "typescript/no-restricted-types": [
632
+ "error",
633
+ {}
634
+ ],
635
+ "typescript/no-var-requires": [
636
+ "error"
637
+ ],
638
+ "typescript/non-nullable-type-assertion-style": [
639
+ "error"
640
+ ],
641
+ "typescript/prefer-literal-enum-member": [
642
+ "error"
643
+ ],
644
+ "typescript/promise-function-async": [
645
+ "error"
646
+ ],
647
+ "typescript/use-unknown-in-catch-callback-variable": [
648
+ "error"
649
+ ],
650
+ "unicorn/no-abusive-eslint-disable": [
651
+ "error"
652
+ ],
653
+ "unicorn/no-anonymous-default-export": [
654
+ "error"
655
+ ],
656
+ "unicorn/no-array-for-each": [
657
+ "off"
658
+ ],
659
+ "unicorn/no-array-reduce": [
660
+ "off"
661
+ ],
662
+ "unicorn/no-document-cookie": [
663
+ "error"
664
+ ],
665
+ "unicorn/no-length-as-slice-end": [
666
+ "error"
667
+ ],
668
+ "unicorn/no-magic-array-flat-depth": [
669
+ "error"
670
+ ],
671
+ "unicorn/no-process-exit": [
672
+ "off"
673
+ ],
674
+ "unicorn/no-useless-error-capture-stack-trace": [
675
+ "error"
676
+ ],
677
+ "unicorn/prefer-modern-math-apis": [
678
+ "error"
679
+ ],
680
+ "unicorn/prefer-node-protocol": [
681
+ "error"
682
+ ],
683
+ "unicorn/prefer-number-properties": [
684
+ "error"
685
+ ],
686
+ // suspicious
687
+ "eslint/block-scoped-var": [
688
+ "error"
689
+ ],
690
+ "eslint/no-extend-native": [
691
+ "error"
692
+ ],
693
+ "eslint/no-extra-bind": [
694
+ "error"
695
+ ],
696
+ "eslint/no-new": [
697
+ "error"
698
+ ],
699
+ "eslint/no-unexpected-multiline": [
700
+ "error"
701
+ ],
702
+ "eslint/no-unneeded-ternary": [
703
+ "error"
704
+ ],
705
+ "eslint/no-useless-concat": [
706
+ "error"
707
+ ],
708
+ "eslint/no-useless-constructor": [
709
+ "off"
710
+ ],
711
+ "eslint/preserve-caught-error": [
712
+ "error"
713
+ ],
714
+ "import/no-absolute-path": [
715
+ "error"
716
+ ],
717
+ "import/no-empty-named-blocks": [
718
+ "error"
719
+ ],
720
+ "import/no-named-as-default": [
721
+ "error"
722
+ ],
723
+ "import/no-named-as-default-member": [
724
+ "error"
725
+ ],
726
+ "import/no-self-import": [
727
+ "error"
728
+ ],
729
+ "import/no-unassigned-import": [
730
+ "error"
731
+ ],
732
+ "oxc/approx-constant": [
733
+ "error"
734
+ ],
735
+ "oxc/misrefactored-assign-op": [
736
+ "error"
737
+ ],
738
+ "oxc/no-async-endpoint-handlers": [
739
+ "error"
740
+ ],
741
+ "oxc/no-this-in-exported-function": [
742
+ "error"
743
+ ],
744
+ "promise/always-return": [
745
+ "error",
746
+ {
747
+ "ignoreAssignmentVariable": [],
748
+ "ignoreLastCallback": false
749
+ }
750
+ ],
751
+ "promise/no-multiple-resolved": [
752
+ "error"
753
+ ],
754
+ "promise/no-promise-in-callback": [
755
+ "error",
756
+ ],
757
+ "typescript/no-confusing-non-null-assertion": [
758
+ "error"
759
+ ],
760
+ "typescript/no-extraneous-class": [
761
+ "error"
762
+ ],
763
+ "typescript/no-unnecessary-boolean-literal-compare": [
764
+ "off"
765
+ ],
766
+ "typescript/no-unnecessary-template-expression": [
767
+ "off"
768
+ ],
769
+ "typescript/no-unnecessary-type-arguments": [
770
+ "error"
771
+ ],
772
+ "typescript/no-unnecessary-type-assertion": [
773
+ "error"
774
+ ],
775
+ "typescript/no-unnecessary-type-constraint": [
776
+ "error"
777
+ ],
778
+ "typescript/no-unsafe-enum-comparison": [
779
+ "error"
780
+ ],
781
+ "typescript/no-unsafe-type-assertion": [
782
+ "error"
783
+ ],
784
+ "unicorn/consistent-function-scoping": [
785
+ "off"
786
+ ],
787
+ "unicorn/no-accessor-recursion": [
788
+ "error"
789
+ ],
790
+ "unicorn/no-array-reverse": [
791
+ "error"
792
+ ],
793
+ "unicorn/no-array-sort": [
794
+ "error"
795
+ ],
796
+ "unicorn/no-instanceof-builtins": [
797
+ "error",
798
+ {
799
+ "include": [],
800
+ "exclude": [],
801
+ "strategy": "strict",
802
+ "useErrorIsError": true
803
+ }
804
+ ],
805
+ "unicorn/prefer-add-event-listener": [
806
+ "error"
807
+ ],
808
+ "unicorn/require-module-specifiers": [
809
+ "error"
810
+ ],
811
+ "unicorn/require-post-message-target-origin": [
812
+ "error"
813
+ ],
814
+ // pedantic
815
+ "eslint/accessor-pairs": [
816
+ "error",
817
+ {
818
+ "enforceForClassMembers": true,
819
+ "enforceForTSTypes": true,
820
+ "getWithoutSet": true,
821
+ "setWithoutGet": true
822
+ }
823
+ ],
824
+ "eslint/array-callback-return": [
825
+ "error",
826
+ {
827
+ "allowImplicit": false,
828
+ "checkForEach": false
829
+ }
830
+ ],
831
+ "eslint/eqeqeq": [
832
+ "error",
833
+ "always",
834
+ {
835
+ "null": "always"
836
+ }
837
+ ],
838
+ "eslint/max-classes-per-file": [
839
+ "off"
840
+ ],
841
+ "eslint/max-depth": [
842
+ "off"
843
+ ],
844
+ "eslint/max-lines": [
845
+ "off"
846
+ ],
847
+ "eslint/max-lines-per-function": [
848
+ "off"
849
+ ],
850
+ "eslint/max-nested-callbacks": [
851
+ "off"
852
+ ],
853
+ "eslint/no-array-constructor": [
854
+ "error"
855
+ ],
856
+ "eslint/no-case-declarations": [
857
+ "error"
858
+ ],
859
+ "eslint/no-constructor-return": [
860
+ "error"
861
+ ],
862
+ "eslint/no-else-return": [
863
+ "off"
864
+ ],
865
+ "eslint/no-fallthrough": [
866
+ "off"
867
+ ],
868
+ "eslint/no-inline-comments": [
869
+ "off"
870
+ ],
871
+ "eslint/no-inner-declarations": [
872
+ "error",
873
+ {
874
+ "blockScopedFunctions": "disallow",
875
+ "config": "both"
876
+ }
877
+ ],
878
+ "eslint/no-lonely-if": [
879
+ "off"
880
+ ],
881
+ "eslint/no-loop-func": [
882
+ "error"
883
+ ],
884
+ "eslint/no-negated-condition": [
885
+ "off"
886
+ ],
887
+ "eslint/no-new-wrappers": [
888
+ "error"
889
+ ],
890
+ "eslint/no-object-constructor": [
891
+ "error"
892
+ ],
893
+ "eslint/no-promise-executor-return": [
894
+ "error",
895
+ {
896
+ "allowVoid": false
897
+ }
898
+ ],
899
+ "eslint/no-prototype-builtins": [
900
+ "error"
901
+ ],
902
+ "eslint/no-redeclare": [
903
+ "error"
904
+ ],
905
+ "eslint/no-self-compare": [
906
+ "error"
907
+ ],
908
+ "eslint/no-throw-literal": [
909
+ "error"
910
+ ],
911
+ "eslint/no-useless-return": [
912
+ "error"
913
+ ],
914
+ "eslint/no-warning-comments": [
915
+ "off"
916
+ ],
917
+ "eslint/radix": [
918
+ "error",
919
+ "always"
920
+ ],
921
+ "eslint/require-await": [
922
+ "error"
923
+ ],
924
+ "eslint/sort-vars": [
925
+ "off"
926
+ ],
927
+ "eslint/symbol-description": [
928
+ "error"
929
+ ],
930
+ "import/max-dependencies": [
931
+ "off"
932
+ ],
933
+ "jsdoc/require-param": [
934
+ "off"
935
+ ],
936
+ "jsdoc/require-param-description": [
937
+ "error"
938
+ ],
939
+ "jsdoc/require-param-name": [
940
+ "error"
941
+ ],
942
+ "jsdoc/require-param-type": [
943
+ "error"
944
+ ],
945
+ "jsdoc/require-returns": [
946
+ "off"
947
+ ],
948
+ "jsdoc/require-returns-description": [
949
+ "error"
950
+ ],
951
+ "jsdoc/require-returns-type": [
952
+ "error"
953
+ ],
954
+ "typescript/ban-ts-comment": [
955
+ "error",
956
+ {
957
+ "ts-expect-error": "allow-with-description",
958
+ "ts-ignore": "allow-with-description",
959
+ "ts-nocheck": "allow-with-description",
960
+ "ts-check": "allow-with-description",
961
+ "minimumDescriptionLength": 3
962
+ }
963
+ ],
964
+ "typescript/ban-types": [
965
+ "error"
966
+ ],
967
+ "typescript/no-confusing-void-expression": [
968
+ "off",
969
+ ],
970
+ "typescript/no-deprecated": [
971
+ "error"
972
+ ],
973
+ "typescript/no-misused-promises": [
974
+ "error"
975
+ ],
976
+ "typescript/no-mixed-enums": [
977
+ "error"
978
+ ],
979
+ "typescript/no-unsafe-argument": [
980
+ "error"
981
+ ],
982
+ "typescript/no-unsafe-assignment": [
983
+ "error"
984
+ ],
985
+ "typescript/no-unsafe-call": [
986
+ "error"
987
+ ],
988
+ "typescript/no-unsafe-function-type": [
989
+ "error"
990
+ ],
991
+ "typescript/no-unsafe-member-access": [
992
+ "error"
993
+ ],
994
+ "typescript/no-unsafe-return": [
995
+ "error"
996
+ ],
997
+ "typescript/only-throw-error": [
998
+ "error"
999
+ ],
1000
+ "typescript/prefer-enum-initializers": [
1001
+ "error"
1002
+ ],
1003
+ "typescript/prefer-includes": [
1004
+ "error"
1005
+ ],
1006
+ "typescript/prefer-nullish-coalescing": [
1007
+ "error",
1008
+ {
1009
+ "allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing": false,
1010
+ "ignoreBooleanCoercion": false,
1011
+ "ignoreConditionalTests": false,
1012
+ "ignoreIfStatements": false,
1013
+ "ignoreMixedLogicalExpressions": false,
1014
+ "ignorePrimitives": false,
1015
+ "ignoreTernaryTests": false
1016
+ }
1017
+ ],
1018
+ "typescript/prefer-promise-reject-errors": [
1019
+ "error",
1020
+ {
1021
+ "allowEmptyReject": false,
1022
+ "allowThrowingAny": false,
1023
+ "allowThrowingUnknown": false
1024
+ }
1025
+ ],
1026
+ "typescript/prefer-ts-expect-error": [
1027
+ "error"
1028
+ ],
1029
+ "typescript/related-getter-setter-pairs": [
1030
+ "error"
1031
+ ],
1032
+ "typescript/require-await": [
1033
+ "error"
1034
+ ],
1035
+ "typescript/restrict-plus-operands": [
1036
+ "error",
1037
+ {
1038
+ "allowAny": false,
1039
+ "allowBoolean": false,
1040
+ "allowNullish": false,
1041
+ "allowNumberAndString": false,
1042
+ "allowRegExp": false,
1043
+ "skipCompoundAssignments": false
1044
+ }
1045
+ ],
1046
+ "typescript/return-await": [
1047
+ "error",
1048
+ "always"
1049
+ ],
1050
+ "typescript/strict-boolean-expressions": [
1051
+ "error"
1052
+ ],
1053
+ "typescript/switch-exhaustiveness-check": [
1054
+ "error",
1055
+ {
1056
+ "allowDefaultCaseForExhaustiveSwitch": true,
1057
+ "considerDefaultExhaustiveForUnions": true,
1058
+ "defaultCaseCommentPattern": null,
1059
+ "requireDefaultForNonUnion": true
1060
+ }
1061
+ ],
1062
+ "unicorn/consistent-assert": [
1063
+ "error"
1064
+ ],
1065
+ "unicorn/consistent-empty-array-spread": [
1066
+ "error"
1067
+ ],
1068
+ "unicorn/escape-case": [
1069
+ "error"
1070
+ ],
1071
+ "unicorn/explicit-length-check": [
1072
+ "error",
1073
+ {
1074
+ "non-zero": "not-equal"
1075
+ }
1076
+ ],
1077
+ "unicorn/new-for-builtins": [
1078
+ "error"
1079
+ ],
1080
+ "unicorn/no-array-callback-reference": [
1081
+ "error"
1082
+ ],
1083
+ "unicorn/no-hex-escape": [
1084
+ "error"
1085
+ ],
1086
+ "unicorn/no-instanceof-array": [
1087
+ "error"
1088
+ ],
1089
+ "unicorn/no-lonely-if": [
1090
+ "off"
1091
+ ],
1092
+ "unicorn/no-negation-in-equality-check": [
1093
+ "error"
1094
+ ],
1095
+ "unicorn/no-new-buffer": [
1096
+ "error"
1097
+ ],
1098
+ "unicorn/no-object-as-default-parameter": [
1099
+ "off"
1100
+ ],
1101
+ "unicorn/no-static-only-class": [
1102
+ "error"
1103
+ ],
1104
+ "unicorn/no-this-assignment": [
1105
+ "error"
1106
+ ],
1107
+ "unicorn/no-typeof-undefined": [
1108
+ "error"
1109
+ ],
1110
+ "unicorn/no-unnecessary-array-flat-depth": [
1111
+ "error"
1112
+ ],
1113
+ "unicorn/no-unnecessary-array-splice-count": [
1114
+ "error"
1115
+ ],
1116
+ "unicorn/no-unnecessary-slice-end": [
1117
+ "error"
1118
+ ],
1119
+ "unicorn/no-unreadable-iife": [
1120
+ "error"
1121
+ ],
1122
+ "unicorn/no-useless-promise-resolve-reject": [
1123
+ "error",
1124
+ {
1125
+ "allowReject": false
1126
+ }
1127
+ ],
1128
+ "unicorn/no-useless-switch-case": [
1129
+ "error"
1130
+ ],
1131
+ "unicorn/no-useless-undefined": [
1132
+ "off"
1133
+ ],
1134
+ "unicorn/prefer-array-flat": [
1135
+ "error"
1136
+ ],
1137
+ "unicorn/prefer-array-some": [
1138
+ "error"
1139
+ ],
1140
+ "unicorn/prefer-at": [
1141
+ "error",
1142
+ {
1143
+ "checkAllIndexAccess": false,
1144
+ "getLastElementFunctions": []
1145
+ }
1146
+ ],
1147
+ "unicorn/prefer-blob-reading-methods": [
1148
+ "error"
1149
+ ],
1150
+ "unicorn/prefer-code-point": [
1151
+ "error"
1152
+ ],
1153
+ "unicorn/prefer-date-now": [
1154
+ "error"
1155
+ ],
1156
+ "unicorn/prefer-dom-node-append": [
1157
+ "error"
1158
+ ],
1159
+ "unicorn/prefer-dom-node-dataset": [
1160
+ "error"
1161
+ ],
1162
+ "unicorn/prefer-dom-node-remove": [
1163
+ "error"
1164
+ ],
1165
+ "unicorn/prefer-event-target": [
1166
+ "error"
1167
+ ],
1168
+ "unicorn/prefer-math-min-max": [
1169
+ "error"
1170
+ ],
1171
+ "unicorn/prefer-math-trunc": [
1172
+ "error"
1173
+ ],
1174
+ "unicorn/prefer-native-coercion-functions": [
1175
+ "error"
1176
+ ],
1177
+ "unicorn/prefer-prototype-methods": [
1178
+ "error"
1179
+ ],
1180
+ "unicorn/prefer-query-selector": [
1181
+ "error"
1182
+ ],
1183
+ "unicorn/prefer-regexp-test": [
1184
+ "error"
1185
+ ],
1186
+ "unicorn/prefer-string-replace-all": [
1187
+ "error"
1188
+ ],
1189
+ "unicorn/prefer-string-slice": [
1190
+ "error"
1191
+ ],
1192
+ "unicorn/prefer-top-level-await": [
1193
+ "error"
1194
+ ],
1195
+ "unicorn/prefer-type-error": [
1196
+ "error"
1197
+ ],
1198
+ "unicorn/require-number-to-fixed-digits-argument": [
1199
+ "error"
1200
+ ],
1201
+ // style
1202
+ "eslint/arrow-body-style": [
1203
+ "off",
1204
+ ],
1205
+ "eslint/capitalized-comments": [
1206
+ "error",
1207
+ {
1208
+ "ignoreConsecutiveComments": false,
1209
+ "ignoreInlineComments": false,
1210
+ "ignorePattern": "",
1211
+ "block": {
1212
+ "ignoreConsecutiveComments": false,
1213
+ "ignoreInlineComments": false,
1214
+ "ignorePattern": "",
1215
+ },
1216
+ "line": {
1217
+ "ignoreConsecutiveComments": false,
1218
+ "ignoreInlineComments": false,
1219
+ "ignorePattern": "",
1220
+ }
1221
+ }
1222
+ ],
1223
+ "eslint/curly": [
1224
+ "error",
1225
+ {
1226
+ "consistent": true,
1227
+ "curlyType": "all"
1228
+ }
1229
+ ],
1230
+ "eslint/default-case-last": [
1231
+ "error"
1232
+ ],
1233
+ "eslint/default-param-last": [
1234
+ "error"
1235
+ ],
1236
+ "eslint/func-names": [
1237
+ "error",
1238
+ "always",
1239
+ {
1240
+ "generators": "always"
1241
+ }
1242
+ ],
1243
+ "eslint/func-style": [
1244
+ "error",
1245
+ {
1246
+ "allowArrowFunctions": true,
1247
+ "allowTypeAnnotation": true,
1248
+ "namedExports": "expression",
1249
+ "style": "expression"
1250
+ }
1251
+ ],
1252
+ "eslint/grouped-accessor-pairs": [
1253
+ "error",
1254
+ {
1255
+ "enforceForTSTypes": true,
1256
+ "pairOrder": "getBeforeSet"
1257
+ }
1258
+ ],
1259
+ "eslint/guard-for-in": [
1260
+ "error"
1261
+ ],
1262
+ "eslint/id-length": [
1263
+ "off"
1264
+ ],
1265
+ "eslint/init-declarations": [
1266
+ "off",
1267
+ ],
1268
+ "eslint/max-params": [
1269
+ "off"
1270
+ ],
1271
+ "eslint/new-cap": [
1272
+ "error",
1273
+ {
1274
+ "capIsNew": true,
1275
+ "capIsNewExceptionPattern": null,
1276
+ "capIsNewExceptions": [],
1277
+ "newIsCap": true,
1278
+ "newIsCapExceptionPattern": null,
1279
+ "newIsCapExceptions": [
1280
+ "Array",
1281
+ "Boolean",
1282
+ "Date",
1283
+ "Error",
1284
+ "Function",
1285
+ "Number",
1286
+ "Object",
1287
+ "RegExp",
1288
+ "String",
1289
+ "Symbol",
1290
+ "BigInt"
1291
+ ],
1292
+ "properties": true
1293
+ }
1294
+ ],
1295
+ "eslint/no-continue": [
1296
+ "off"
1297
+ ],
1298
+ "eslint/no-duplicate-imports": [
1299
+ "error",
1300
+ {
1301
+ "allowSeparateTypeImports": true,
1302
+ "includeExports": true
1303
+ }
1304
+ ],
1305
+ "eslint/no-extra-label": [
1306
+ "off"
1307
+ ],
1308
+ "eslint/no-implicit-coercion": [
1309
+ "error",
1310
+ {
1311
+ "allow": [],
1312
+ "boolean": true,
1313
+ "disallowTemplateShorthand": true,
1314
+ "number": true,
1315
+ "string": true
1316
+ }
1317
+ ],
1318
+ "eslint/no-label-var": [
1319
+ "error"
1320
+ ],
1321
+ "eslint/no-labels": [
1322
+ "off",
1323
+ ],
1324
+ "eslint/no-lone-blocks": [
1325
+ "error"
1326
+ ],
1327
+ "eslint/no-magic-numbers": [
1328
+ "off"
1329
+ ],
1330
+ "eslint/no-multi-assign": [
1331
+ "error",
1332
+ {
1333
+ "ignoreNonDeclaration": false
1334
+ }
1335
+ ],
1336
+ "eslint/no-multi-str": [
1337
+ "error"
1338
+ ],
1339
+ "eslint/no-nested-ternary": [
1340
+ "off"
1341
+ ],
1342
+ "eslint/no-new-func": [
1343
+ "error"
1344
+ ],
1345
+ "eslint/no-return-assign": [
1346
+ "error",
1347
+ "always"
1348
+ ],
1349
+ "eslint/no-script-url": [
1350
+ "error"
1351
+ ],
1352
+ "eslint/no-template-curly-in-string": [
1353
+ "off"
1354
+ ],
1355
+ "eslint/no-ternary": [
1356
+ "off"
1357
+ ],
1358
+ "eslint/no-useless-computed-key": [
1359
+ "error",
1360
+ {
1361
+ "enforceForClassMembers": true
1362
+ }
1363
+ ],
1364
+ "eslint/operator-assignment": [
1365
+ "error",
1366
+ "never"
1367
+ ],
1368
+ "eslint/prefer-destructuring": [
1369
+ "off"
1370
+ ],
1371
+ "eslint/prefer-exponentiation-operator": [
1372
+ "error"
1373
+ ],
1374
+ "eslint/prefer-numeric-literals": [
1375
+ "error"
1376
+ ],
1377
+ "eslint/prefer-object-has-own": [
1378
+ "error"
1379
+ ],
1380
+ "eslint/prefer-object-spread": [
1381
+ "error"
1382
+ ],
1383
+ "eslint/prefer-promise-reject-errors": [
1384
+ "error",
1385
+ {
1386
+ "allowEmptyReject": false
1387
+ }
1388
+ ],
1389
+ "eslint/prefer-rest-params": [
1390
+ "error"
1391
+ ],
1392
+ "eslint/prefer-spread": [
1393
+ "error"
1394
+ ],
1395
+ "eslint/prefer-template": [
1396
+ "error"
1397
+ ],
1398
+ "eslint/sort-imports": [
1399
+ "error",
1400
+ {
1401
+ "allowSeparatedGroups": true,
1402
+ "ignoreCase": false,
1403
+ "ignoreDeclarationSort": false,
1404
+ "ignoreMemberSort": false,
1405
+ "memberSyntaxSortOrder": [
1406
+ "none",
1407
+ "all",
1408
+ "single",
1409
+ "multiple"
1410
+ ]
1411
+ }
1412
+ ],
1413
+ "eslint/sort-keys": [
1414
+ "off",
1415
+ ],
1416
+ "eslint/vars-on-top": [
1417
+ "error"
1418
+ ],
1419
+ "eslint/yoda": [
1420
+ "error",
1421
+ "never",
1422
+ {
1423
+ "exceptRange": true,
1424
+ "onlyEquality": false
1425
+ }
1426
+ ],
1427
+ "import/consistent-type-specifier-style": [
1428
+ "error",
1429
+ "prefer-top-level"
1430
+ ],
1431
+ "import/exports-last": [
1432
+ "off",
1433
+ ],
1434
+ "import/first": [
1435
+ "error",
1436
+ "absolute-first"
1437
+ ],
1438
+ "import/group-exports": [
1439
+ "off"
1440
+ ],
1441
+ "import/no-anonymous-default-export": [
1442
+ "error",
1443
+ {
1444
+ "allowLiteral": false,
1445
+ "allowArray": false,
1446
+ "allowArrowFunction": false,
1447
+ "allowAnonymousClass": false,
1448
+ "allowAnonymousFunction": false,
1449
+ "allowObject": false,
1450
+ "allowNew": false,
1451
+ "allowCallExpression": false
1452
+ }
1453
+ ],
1454
+ "import/no-duplicates": [
1455
+ "error",
1456
+ {
1457
+ "preferInline": false
1458
+ }
1459
+ ],
1460
+ "import/no-mutable-exports": [
1461
+ "error"
1462
+ ],
1463
+ "import/no-named-default": [
1464
+ "error"
1465
+ ],
1466
+ "import/no-named-export": [
1467
+ "off"
1468
+ ],
1469
+ "import/no-namespace": [
1470
+ "off"
1471
+ ],
1472
+ "import/prefer-default-export": [
1473
+ "off"
1474
+ ],
1475
+ "node/global-require": [
1476
+ "error"
1477
+ ],
1478
+ "node/no-exports-assign": [
1479
+ "error"
1480
+ ],
1481
+ "promise/avoid-new": [
1482
+ "off"
1483
+ ],
1484
+ "promise/no-nesting": [
1485
+ "error"
1486
+ ],
1487
+ "promise/no-return-wrap": [
1488
+ "error",
1489
+ {
1490
+ "allowReject": false
1491
+ }
1492
+ ],
1493
+ "promise/param-names": [
1494
+ "error",
1495
+ {
1496
+ "resolvePattern": null,
1497
+ "rejectPattern": null
1498
+ }
1499
+ ],
1500
+ "promise/prefer-await-to-callbacks": [
1501
+ "error"
1502
+ ],
1503
+ "promise/prefer-await-to-then": [
1504
+ "error",
1505
+ {
1506
+ "strict": true
1507
+ }
1508
+ ],
1509
+ "promise/prefer-catch": [
1510
+ "error"
1511
+ ],
1512
+ "typescript/adjacent-overload-signatures": [
1513
+ "error"
1514
+ ],
1515
+ "typescript/array-type": [
1516
+ "error",
1517
+ {
1518
+ "default": "array-simple",
1519
+ "readonly": "array-simple"
1520
+ }
1521
+ ],
1522
+ "typescript/ban-tslint-comment": [
1523
+ "error"
1524
+ ],
1525
+ "typescript/consistent-generic-constructors": [
1526
+ "error",
1527
+ {
1528
+ "option": "constructor"
1529
+ }
1530
+ ],
1531
+ "typescript/consistent-indexed-object-style": [
1532
+ "error",
1533
+ "record"
1534
+ ],
1535
+ "typescript/consistent-type-definitions": [
1536
+ "error",
1537
+ "interface"
1538
+ ],
1539
+ "typescript/consistent-type-imports": [
1540
+ "error",
1541
+ {
1542
+ "disallowTypeAnnotations": true,
1543
+ "fixStyle": "separate-type-imports",
1544
+ "prefer": "type-imports"
1545
+ }
1546
+ ],
1547
+ "typescript/no-empty-interface": [
1548
+ "off"
1549
+ ],
1550
+ "typescript/no-inferrable-types": [
1551
+ "off"
1552
+ ],
1553
+ "typescript/prefer-for-of": [
1554
+ "error"
1555
+ ],
1556
+ "typescript/prefer-function-type": [
1557
+ "error"
1558
+ ],
1559
+ "typescript/prefer-namespace-keyword": [
1560
+ "error"
1561
+ ],
1562
+ "typescript/prefer-reduce-type-parameter": [
1563
+ "error"
1564
+ ],
1565
+ "typescript/prefer-return-this-type": [
1566
+ "error"
1567
+ ],
1568
+ "unicorn/catch-error-name": [
1569
+ "error",
1570
+ {
1571
+ "ignore": [
1572
+ "error",
1573
+ "exception"
1574
+ ],
1575
+ "name": [
1576
+ "exception"
1577
+ ]
1578
+ }
1579
+ ],
1580
+ "unicorn/consistent-date-clone": [
1581
+ "error"
1582
+ ],
1583
+ "unicorn/consistent-existence-index-check": [
1584
+ "error"
1585
+ ],
1586
+ "unicorn/empty-brace-spaces": [
1587
+ "error"
1588
+ ],
1589
+ "unicorn/error-message": [
1590
+ "error"
1591
+ ],
1592
+ "unicorn/filename-case": [
1593
+ "error",
1594
+ {
1595
+ "case": "kebabCase",
1596
+ "cases": {
1597
+ "kebabCase": true,
1598
+ "camelCase": false,
1599
+ "snakeCase": false,
1600
+ "pascalCase": false
1601
+ },
1602
+ "ignore": null,
1603
+ "multipleFileExtensions": true
1604
+ }
1605
+ ],
1606
+ "unicorn/no-array-method-this-argument": [
1607
+ "error"
1608
+ ],
1609
+ "unicorn/no-await-expression-member": [
1610
+ "error"
1611
+ ],
1612
+ "unicorn/no-console-spaces": [
1613
+ "error"
1614
+ ],
1615
+ "unicorn/no-nested-ternary": [
1616
+ "off"
1617
+ ],
1618
+ "unicorn/no-null": [
1619
+ "off"
1620
+ ],
1621
+ "unicorn/no-unreadable-array-destructuring": [
1622
+ "error"
1623
+ ],
1624
+ "unicorn/no-useless-collection-argument": [
1625
+ "error"
1626
+ ],
1627
+ "unicorn/no-zero-fractions": [
1628
+ "off"
1629
+ ],
1630
+ "unicorn/number-literal-case": [
1631
+ "error"
1632
+ ],
1633
+ "unicorn/numeric-separators-style": [
1634
+ "error",
1635
+ {
1636
+ "binary": {
1637
+ "groupLength": 4,
1638
+ "minimumDigits": 8
1639
+ },
1640
+ "hexadecimal": {
1641
+ "groupLength": 4,
1642
+ "minimumDigits": 8
1643
+ },
1644
+ "number": {
1645
+ "groupLength": 3,
1646
+ "minimumDigits": 1
1647
+ },
1648
+ "octal": {
1649
+ "groupLength": 4,
1650
+ "minimumDigits": 8
1651
+ },
1652
+ "onlyIfContainsSeparator": false
1653
+ }
1654
+ ],
1655
+ "unicorn/prefer-array-index-of": [
1656
+ "error"
1657
+ ],
1658
+ "unicorn/prefer-bigint-literals": [
1659
+ "off"
1660
+ ],
1661
+ "unicorn/prefer-class-fields": [
1662
+ "off"
1663
+ ],
1664
+ "unicorn/prefer-classlist-toggle": [
1665
+ "error"
1666
+ ],
1667
+ "unicorn/prefer-default-parameters": [
1668
+ "off"
1669
+ ],
1670
+ "unicorn/prefer-dom-node-text-content": [
1671
+ "error"
1672
+ ],
1673
+ "unicorn/prefer-global-this": [
1674
+ "error"
1675
+ ],
1676
+ "unicorn/prefer-includes": [
1677
+ "error"
1678
+ ],
1679
+ "unicorn/prefer-keyboard-event-key": [
1680
+ "error"
1681
+ ],
1682
+ "unicorn/prefer-logical-operator-over-ternary": [
1683
+ "error"
1684
+ ],
1685
+ "unicorn/prefer-modern-dom-apis": [
1686
+ "error"
1687
+ ],
1688
+ "unicorn/prefer-negative-index": [
1689
+ "error"
1690
+ ],
1691
+ "unicorn/prefer-object-from-entries": [
1692
+ "error"
1693
+ ],
1694
+ "unicorn/prefer-optional-catch-binding": [
1695
+ "error"
1696
+ ],
1697
+ "unicorn/prefer-reflect-apply": [
1698
+ "error"
1699
+ ],
1700
+ "unicorn/prefer-response-static-json": [
1701
+ "off"
1702
+ ],
1703
+ "unicorn/prefer-spread": [
1704
+ "off"
1705
+ ],
1706
+ "unicorn/prefer-string-raw": [
1707
+ "error"
1708
+ ],
1709
+ "unicorn/prefer-string-trim-start-end": [
1710
+ "error"
1711
+ ],
1712
+ "unicorn/prefer-structured-clone": [
1713
+ "error",
1714
+ {
1715
+ "functions": []
1716
+ }
1717
+ ],
1718
+ "unicorn/require-array-join-separator": [
1719
+ "off"
1720
+ ],
1721
+ "unicorn/require-module-attributes": [
1722
+ "error"
1723
+ ],
1724
+ "unicorn/switch-case-braces": [
1725
+ "error",
1726
+ "always"
1727
+ ],
1728
+ "unicorn/text-encoding-identifier-case": [
1729
+ "error"
1730
+ ],
1731
+ "unicorn/throw-new-error": [
1732
+ "error"
1733
+ ],
1734
+ // nursery
1735
+ "eslint/getter-return": [
1736
+ "error",
1737
+ {
1738
+ "allowImplicit": false
1739
+ }
1740
+ ],
1741
+ "eslint/no-misleading-character-class": [
1742
+ "error",
1743
+ {
1744
+ "allowEscape": false
1745
+ }
1746
+ ],
1747
+ "eslint/no-undef": [
1748
+ "error",
1749
+ {
1750
+ "typeof": false
1751
+ }
1752
+ ],
1753
+ "eslint/no-unreachable": [
1754
+ "error"
1755
+ ],
1756
+ "import/export": [
1757
+ "error"
1758
+ ],
1759
+ "import/named": [
1760
+ "error"
1761
+ ],
1762
+ "oxc/branches-sharing-code": [
1763
+ "off"
1764
+ ],
1765
+ "promise/no-return-in-finally": [
1766
+ "error"
1767
+ ],
1768
+ }
1769
+ }
1770
+ ]
1771
+ }