eslint-config-silverwind 53.0.0 → 54.0.2

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.
Files changed (2) hide show
  1. package/index.json +1 -1675
  2. package/package.json +1 -1
package/index.json CHANGED
@@ -1,1675 +1 @@
1
- {
2
- "root": true,
3
- "reportUnusedDisableDirectives": true,
4
- "plugins": [
5
- "eslint-plugin-unicorn",
6
- "eslint-plugin-import",
7
- "eslint-plugin-sonarjs"
8
- ],
9
- "parserOptions": {
10
- "sourceType": "module",
11
- "ecmaVersion": "latest"
12
- },
13
- "env": {
14
- "browser": true,
15
- "es2022": true,
16
- "node": true
17
- },
18
- "settings": {
19
- "import/extensions": [
20
- ".js",
21
- ".jsx"
22
- ]
23
- },
24
- "ignorePatterns": [
25
- "**/vendor/**"
26
- ],
27
- "overrides": [
28
- {
29
- "files": [
30
- "**/*worker.js",
31
- "**/*worker.jsx"
32
- ],
33
- "env": {
34
- "worker": true
35
- },
36
- "rules": {
37
- "no-restricted-globals": [
38
- 2,
39
- "addEventListener",
40
- "blur",
41
- "close",
42
- "closed",
43
- "confirm",
44
- "defaultStatus",
45
- "defaultstatus",
46
- "error",
47
- "event",
48
- "external",
49
- "find",
50
- "focus",
51
- "frameElement",
52
- "frames",
53
- "history",
54
- "innerHeight",
55
- "innerWidth",
56
- "isFinite",
57
- "isNaN",
58
- "length",
59
- "locationbar",
60
- "menubar",
61
- "moveBy",
62
- "moveTo",
63
- "name",
64
- "onblur",
65
- "onerror",
66
- "onfocus",
67
- "onload",
68
- "onresize",
69
- "onunload",
70
- "open",
71
- "opener",
72
- "opera",
73
- "outerHeight",
74
- "outerWidth",
75
- "pageXOffset",
76
- "pageYOffset",
77
- "parent",
78
- "print",
79
- "removeEventListener",
80
- "resizeBy",
81
- "resizeTo",
82
- "screen",
83
- "screenLeft",
84
- "screenTop",
85
- "screenX",
86
- "screenY",
87
- "scroll",
88
- "scrollbars",
89
- "scrollBy",
90
- "scrollTo",
91
- "scrollX",
92
- "scrollY",
93
- "status",
94
- "statusbar",
95
- "stop",
96
- "toolbar",
97
- "top",
98
- "window"
99
- ]
100
- }
101
- },
102
- {
103
- "files": [
104
- "**/*test.js",
105
- "**/*test.jsx"
106
- ],
107
- "env": {
108
- "jest": true
109
- },
110
- "rules": {
111
- "unicorn/consistent-function-scoping": [
112
- 0
113
- ]
114
- }
115
- },
116
- {
117
- "files": [
118
- "**/*.config.js"
119
- ],
120
- "rules": {
121
- "import/no-unused-modules": [
122
- 0
123
- ]
124
- }
125
- }
126
- ],
127
- "rules": {
128
- "accessor-pairs": [
129
- 2
130
- ],
131
- "array-bracket-newline": [
132
- 0
133
- ],
134
- "array-bracket-spacing": [
135
- 2,
136
- "never"
137
- ],
138
- "array-callback-return": [
139
- 2,
140
- {
141
- "checkForEach": true
142
- }
143
- ],
144
- "array-element-newline": [
145
- 0
146
- ],
147
- "arrow-body-style": [
148
- 0
149
- ],
150
- "arrow-parens": [
151
- 0
152
- ],
153
- "arrow-spacing": [
154
- 2,
155
- {
156
- "before": true,
157
- "after": true
158
- }
159
- ],
160
- "block-scoped-var": [
161
- 2
162
- ],
163
- "block-spacing": [
164
- 0
165
- ],
166
- "brace-style": [
167
- 2,
168
- "1tbs",
169
- {
170
- "allowSingleLine": true
171
- }
172
- ],
173
- "camelcase": [
174
- 0
175
- ],
176
- "capitalized-comments": [
177
- 0
178
- ],
179
- "class-methods-use-this": [
180
- 0
181
- ],
182
- "comma-dangle": [
183
- 2,
184
- "only-multiline"
185
- ],
186
- "comma-spacing": [
187
- 2,
188
- {
189
- "before": false,
190
- "after": true
191
- }
192
- ],
193
- "comma-style": [
194
- 2,
195
- "last"
196
- ],
197
- "complexity": [
198
- 0
199
- ],
200
- "computed-property-spacing": [
201
- 2,
202
- "never"
203
- ],
204
- "consistent-return": [
205
- 0
206
- ],
207
- "consistent-this": [
208
- 0
209
- ],
210
- "constructor-super": [
211
- 2
212
- ],
213
- "curly": [
214
- 0
215
- ],
216
- "default-case-last": [
217
- 2
218
- ],
219
- "default-case": [
220
- 0
221
- ],
222
- "default-param-last": [
223
- 0
224
- ],
225
- "dot-location": [
226
- 2,
227
- "property"
228
- ],
229
- "dot-notation": [
230
- 0
231
- ],
232
- "eol-last": [
233
- 2
234
- ],
235
- "eqeqeq": [
236
- 2
237
- ],
238
- "for-direction": [
239
- 2
240
- ],
241
- "func-call-spacing": [
242
- 2,
243
- "never"
244
- ],
245
- "func-name-matching": [
246
- 2
247
- ],
248
- "func-names": [
249
- 0
250
- ],
251
- "func-style": [
252
- 0
253
- ],
254
- "function-call-argument-newline": [
255
- 0
256
- ],
257
- "function-paren-newline": [
258
- 0
259
- ],
260
- "generator-star-spacing": [
261
- 0
262
- ],
263
- "getter-return": [
264
- 2
265
- ],
266
- "grouped-accessor-pairs": [
267
- 2
268
- ],
269
- "guard-for-in": [
270
- 0
271
- ],
272
- "id-blacklist": [
273
- 0
274
- ],
275
- "id-denylist": [
276
- 0
277
- ],
278
- "id-length": [
279
- 0
280
- ],
281
- "id-match": [
282
- 0
283
- ],
284
- "implicit-arrow-linebreak": [
285
- 0
286
- ],
287
- "import/default": [
288
- 2
289
- ],
290
- "import/dynamic-import-chunkname": [
291
- 0
292
- ],
293
- "import/export": [
294
- 2
295
- ],
296
- "import/exports-last": [
297
- 0
298
- ],
299
- "import/extensions": [
300
- 2,
301
- "ignorePackages"
302
- ],
303
- "import/first": [
304
- 2
305
- ],
306
- "import/group-exports": [
307
- 0
308
- ],
309
- "import/max-dependencies": [
310
- 0
311
- ],
312
- "import/named": [
313
- 2
314
- ],
315
- "import/namespace": [
316
- 0
317
- ],
318
- "import/newline-after-import": [
319
- 0
320
- ],
321
- "import/no-absolute-path": [
322
- 2
323
- ],
324
- "import/no-amd": [
325
- 0
326
- ],
327
- "import/no-anonymous-default-export": [
328
- 0
329
- ],
330
- "import/no-commonjs": [
331
- 0
332
- ],
333
- "import/no-cycle": [
334
- 2,
335
- {
336
- "ignoreExternal": true,
337
- "maxDepth": 1
338
- }
339
- ],
340
- "import/no-default-export": [
341
- 0
342
- ],
343
- "import/no-deprecated": [
344
- 0
345
- ],
346
- "import/no-duplicates": [
347
- 2
348
- ],
349
- "import/no-dynamic-require": [
350
- 0
351
- ],
352
- "import/no-extraneous-dependencies": [
353
- 2
354
- ],
355
- "import/no-import-module-exports": [
356
- 0
357
- ],
358
- "import/no-internal-modules": [
359
- 0
360
- ],
361
- "import/no-mutable-exports": [
362
- 0
363
- ],
364
- "import/no-named-as-default-member": [
365
- 0
366
- ],
367
- "import/no-named-as-default": [
368
- 2
369
- ],
370
- "import/no-named-default": [
371
- 0
372
- ],
373
- "import/no-named-export": [
374
- 0
375
- ],
376
- "import/no-namespace": [
377
- 0
378
- ],
379
- "import/no-nodejs-modules": [
380
- 0
381
- ],
382
- "import/no-relative-packages": [
383
- 0
384
- ],
385
- "import/no-relative-parent-imports": [
386
- 0
387
- ],
388
- "import/no-restricted-paths": [
389
- 0
390
- ],
391
- "import/no-self-import": [
392
- 2
393
- ],
394
- "import/no-unassigned-import": [
395
- 0
396
- ],
397
- "import/no-unresolved": [
398
- 2,
399
- {
400
- "commonjs": true,
401
- "ignore": [
402
- "\\?.+$"
403
- ]
404
- }
405
- ],
406
- "import/no-unused-modules": [
407
- 2,
408
- {
409
- "unusedExports": true
410
- }
411
- ],
412
- "import/no-useless-path-segments": [
413
- 2,
414
- {
415
- "commonjs": true
416
- }
417
- ],
418
- "import/no-webpack-loader-syntax": [
419
- 2
420
- ],
421
- "import/order": [
422
- 0
423
- ],
424
- "import/prefer-default-export": [
425
- 0
426
- ],
427
- "import/unambiguous": [
428
- 0
429
- ],
430
- "indent": [
431
- 2,
432
- 2,
433
- {
434
- "ignoreComments": true,
435
- "SwitchCase": 1
436
- }
437
- ],
438
- "init-declarations": [
439
- 0
440
- ],
441
- "jsx-quotes": [
442
- 2,
443
- "prefer-double"
444
- ],
445
- "key-spacing": [
446
- 2
447
- ],
448
- "keyword-spacing": [
449
- 2
450
- ],
451
- "line-comment-position": [
452
- 0
453
- ],
454
- "linebreak-style": [
455
- 2,
456
- "unix"
457
- ],
458
- "lines-around-comment": [
459
- 0
460
- ],
461
- "lines-between-class-members": [
462
- 0
463
- ],
464
- "max-classes-per-file": [
465
- 0
466
- ],
467
- "max-depth": [
468
- 0
469
- ],
470
- "max-len": [
471
- 0
472
- ],
473
- "max-lines-per-function": [
474
- 0
475
- ],
476
- "max-lines": [
477
- 0
478
- ],
479
- "max-nested-callbacks": [
480
- 0
481
- ],
482
- "max-params": [
483
- 0
484
- ],
485
- "max-statements-per-line": [
486
- 0
487
- ],
488
- "max-statements": [
489
- 0
490
- ],
491
- "multiline-comment-style": [
492
- 0
493
- ],
494
- "multiline-ternary": [
495
- 0
496
- ],
497
- "new-cap": [
498
- 0
499
- ],
500
- "new-parens": [
501
- 2
502
- ],
503
- "newline-per-chained-call": [
504
- 0
505
- ],
506
- "no-alert": [
507
- 0
508
- ],
509
- "no-array-constructor": [
510
- 2
511
- ],
512
- "no-async-promise-executor": [
513
- 0
514
- ],
515
- "no-await-in-loop": [
516
- 0
517
- ],
518
- "no-bitwise": [
519
- 0
520
- ],
521
- "no-buffer-constructor": [
522
- 0
523
- ],
524
- "no-caller": [
525
- 2
526
- ],
527
- "no-case-declarations": [
528
- 2
529
- ],
530
- "no-class-assign": [
531
- 2
532
- ],
533
- "no-compare-neg-zero": [
534
- 2
535
- ],
536
- "no-cond-assign": [
537
- 2,
538
- "except-parens"
539
- ],
540
- "no-confusing-arrow": [
541
- 0
542
- ],
543
- "no-console": [
544
- 1,
545
- {
546
- "allow": [
547
- "debug",
548
- "info",
549
- "warn",
550
- "error"
551
- ]
552
- }
553
- ],
554
- "no-const-assign": [
555
- 2
556
- ],
557
- "no-constant-binary-expression": [
558
- 2
559
- ],
560
- "no-constant-condition": [
561
- 0
562
- ],
563
- "no-constructor-return": [
564
- 2
565
- ],
566
- "no-continue": [
567
- 0
568
- ],
569
- "no-control-regex": [
570
- 0
571
- ],
572
- "no-debugger": [
573
- 1
574
- ],
575
- "no-delete-var": [
576
- 2
577
- ],
578
- "no-div-regex": [
579
- 0
580
- ],
581
- "no-dupe-args": [
582
- 2
583
- ],
584
- "no-dupe-class-members": [
585
- 2
586
- ],
587
- "no-dupe-else-if": [
588
- 2
589
- ],
590
- "no-dupe-keys": [
591
- 2
592
- ],
593
- "no-duplicate-case": [
594
- 2
595
- ],
596
- "no-duplicate-imports": [
597
- 0
598
- ],
599
- "no-else-return": [
600
- 0
601
- ],
602
- "no-empty-character-class": [
603
- 2
604
- ],
605
- "no-empty-function": [
606
- 0
607
- ],
608
- "no-empty-pattern": [
609
- 2
610
- ],
611
- "no-empty": [
612
- 2,
613
- {
614
- "allowEmptyCatch": true
615
- }
616
- ],
617
- "no-eq-null": [
618
- 2
619
- ],
620
- "no-eval": [
621
- 2
622
- ],
623
- "no-ex-assign": [
624
- 2
625
- ],
626
- "no-extend-native": [
627
- 2
628
- ],
629
- "no-extra-bind": [
630
- 2
631
- ],
632
- "no-extra-boolean-cast": [
633
- 2
634
- ],
635
- "no-extra-label": [
636
- 0
637
- ],
638
- "no-extra-parens": [
639
- 0
640
- ],
641
- "no-extra-semi": [
642
- 2
643
- ],
644
- "no-fallthrough": [
645
- 2
646
- ],
647
- "no-floating-decimal": [
648
- 0
649
- ],
650
- "no-func-assign": [
651
- 2
652
- ],
653
- "no-global-assign": [
654
- 2
655
- ],
656
- "no-implicit-coercion": [
657
- 0
658
- ],
659
- "no-implicit-globals": [
660
- 0
661
- ],
662
- "no-implied-eval": [
663
- 2
664
- ],
665
- "no-import-assign": [
666
- 2
667
- ],
668
- "no-inline-comments": [
669
- 0
670
- ],
671
- "no-inner-declarations": [
672
- 2
673
- ],
674
- "no-invalid-regexp": [
675
- 2
676
- ],
677
- "no-invalid-this": [
678
- 0
679
- ],
680
- "no-irregular-whitespace": [
681
- 2
682
- ],
683
- "no-iterator": [
684
- 2
685
- ],
686
- "no-label-var": [
687
- 2
688
- ],
689
- "no-labels": [
690
- 2
691
- ],
692
- "no-lone-blocks": [
693
- 2
694
- ],
695
- "no-lonely-if": [
696
- 0
697
- ],
698
- "no-loop-func": [
699
- 0
700
- ],
701
- "no-loss-of-precision": [
702
- 2
703
- ],
704
- "no-magic-numbers": [
705
- 0
706
- ],
707
- "no-misleading-character-class": [
708
- 2
709
- ],
710
- "no-mixed-operators": [
711
- 0
712
- ],
713
- "no-mixed-spaces-and-tabs": [
714
- 2
715
- ],
716
- "no-multi-assign": [
717
- 0
718
- ],
719
- "no-multi-spaces": [
720
- 2,
721
- {
722
- "ignoreEOLComments": true,
723
- "exceptions": {
724
- "Property": true
725
- }
726
- }
727
- ],
728
- "no-multi-str": [
729
- 2
730
- ],
731
- "no-multiple-empty-lines": [
732
- 2,
733
- {
734
- "max": 1,
735
- "maxEOF": 0,
736
- "maxBOF": 0
737
- }
738
- ],
739
- "no-negated-condition": [
740
- 0
741
- ],
742
- "no-nested-ternary": [
743
- 0
744
- ],
745
- "no-new-func": [
746
- 2
747
- ],
748
- "no-new-object": [
749
- 2
750
- ],
751
- "no-new-symbol": [
752
- 2
753
- ],
754
- "no-new-wrappers": [
755
- 2
756
- ],
757
- "no-new": [
758
- 0
759
- ],
760
- "no-nonoctal-decimal-escape": [
761
- 2
762
- ],
763
- "no-obj-calls": [
764
- 2
765
- ],
766
- "no-octal-escape": [
767
- 2
768
- ],
769
- "no-octal": [
770
- 2
771
- ],
772
- "no-param-reassign": [
773
- 0
774
- ],
775
- "no-plusplus": [
776
- 0
777
- ],
778
- "no-promise-executor-return": [
779
- 0
780
- ],
781
- "no-proto": [
782
- 2
783
- ],
784
- "no-prototype-builtins": [
785
- 2
786
- ],
787
- "no-redeclare": [
788
- 2
789
- ],
790
- "no-regex-spaces": [
791
- 2
792
- ],
793
- "no-restricted-exports": [
794
- 0
795
- ],
796
- "no-restricted-globals": [
797
- 2,
798
- "addEventListener",
799
- "blur",
800
- "close",
801
- "closed",
802
- "confirm",
803
- "defaultStatus",
804
- "defaultstatus",
805
- "error",
806
- "event",
807
- "external",
808
- "find",
809
- "focus",
810
- "frameElement",
811
- "frames",
812
- "history",
813
- "innerHeight",
814
- "innerWidth",
815
- "isFinite",
816
- "isNaN",
817
- "length",
818
- "location",
819
- "locationbar",
820
- "menubar",
821
- "moveBy",
822
- "moveTo",
823
- "name",
824
- "onblur",
825
- "onerror",
826
- "onfocus",
827
- "onload",
828
- "onresize",
829
- "onunload",
830
- "open",
831
- "opener",
832
- "opera",
833
- "outerHeight",
834
- "outerWidth",
835
- "pageXOffset",
836
- "pageYOffset",
837
- "parent",
838
- "print",
839
- "removeEventListener",
840
- "resizeBy",
841
- "resizeTo",
842
- "screen",
843
- "screenLeft",
844
- "screenTop",
845
- "screenX",
846
- "screenY",
847
- "scroll",
848
- "scrollbars",
849
- "self",
850
- "scrollBy",
851
- "scrollTo",
852
- "scrollX",
853
- "scrollY",
854
- "status",
855
- "statusbar",
856
- "stop",
857
- "toolbar",
858
- "top",
859
- "__dirname",
860
- "__filename"
861
- ],
862
- "no-restricted-imports": [
863
- 2,
864
- {
865
- "patterns": [
866
- "*.json"
867
- ]
868
- }
869
- ],
870
- "no-restricted-properties": [
871
- 0
872
- ],
873
- "no-restricted-syntax": [
874
- 2,
875
- "WithStatement",
876
- "ForInStatement",
877
- "LabeledStatement"
878
- ],
879
- "no-return-assign": [
880
- 0
881
- ],
882
- "no-return-await": [
883
- 0
884
- ],
885
- "no-script-url": [
886
- 2
887
- ],
888
- "no-self-assign": [
889
- 2,
890
- {
891
- "props": true
892
- }
893
- ],
894
- "no-self-compare": [
895
- 2
896
- ],
897
- "no-sequences": [
898
- 2
899
- ],
900
- "no-setter-return": [
901
- 2
902
- ],
903
- "no-shadow-restricted-names": [
904
- 2
905
- ],
906
- "no-shadow": [
907
- 0
908
- ],
909
- "no-sparse-arrays": [
910
- 2
911
- ],
912
- "no-tabs": [
913
- 2
914
- ],
915
- "no-template-curly-in-string": [
916
- 2
917
- ],
918
- "no-ternary": [
919
- 0
920
- ],
921
- "no-this-before-super": [
922
- 2
923
- ],
924
- "no-throw-literal": [
925
- 2
926
- ],
927
- "no-trailing-spaces": [
928
- 2
929
- ],
930
- "no-undef-init": [
931
- 2
932
- ],
933
- "no-undef": [
934
- 2,
935
- {
936
- "typeof": true
937
- }
938
- ],
939
- "no-undefined": [
940
- 0
941
- ],
942
- "no-underscore-dangle": [
943
- 0
944
- ],
945
- "no-unexpected-multiline": [
946
- 2
947
- ],
948
- "no-unmodified-loop-condition": [
949
- 2
950
- ],
951
- "no-unneeded-ternary": [
952
- 0
953
- ],
954
- "no-unreachable-loop": [
955
- 2
956
- ],
957
- "no-unreachable": [
958
- 2
959
- ],
960
- "no-unsafe-finally": [
961
- 2
962
- ],
963
- "no-unsafe-negation": [
964
- 2
965
- ],
966
- "no-unsafe-optional-chaining": [
967
- 2
968
- ],
969
- "no-unused-expressions": [
970
- 2
971
- ],
972
- "no-unused-labels": [
973
- 2
974
- ],
975
- "no-unused-private-class-members": [
976
- 2
977
- ],
978
- "no-unused-vars": [
979
- 2,
980
- {
981
- "args": "all",
982
- "caughtErrors": "all",
983
- "ignoreRestSiblings": false,
984
- "argsIgnorePattern": "^_",
985
- "varsIgnorePattern": "^_",
986
- "caughtErrorsIgnorePattern": "^_",
987
- "destructuredArrayIgnorePattern": "^_"
988
- }
989
- ],
990
- "no-use-before-define": [
991
- 2,
992
- {
993
- "functions": false,
994
- "classes": true,
995
- "variables": true,
996
- "allowNamedExports": true
997
- }
998
- ],
999
- "no-useless-backreference": [
1000
- 0
1001
- ],
1002
- "no-useless-call": [
1003
- 2
1004
- ],
1005
- "no-useless-catch": [
1006
- 2
1007
- ],
1008
- "no-useless-computed-key": [
1009
- 2
1010
- ],
1011
- "no-useless-concat": [
1012
- 2
1013
- ],
1014
- "no-useless-constructor": [
1015
- 2
1016
- ],
1017
- "no-useless-escape": [
1018
- 2
1019
- ],
1020
- "no-useless-rename": [
1021
- 2
1022
- ],
1023
- "no-useless-return": [
1024
- 0
1025
- ],
1026
- "no-var": [
1027
- 2
1028
- ],
1029
- "no-void": [
1030
- 2
1031
- ],
1032
- "no-warning-comments": [
1033
- 0
1034
- ],
1035
- "no-whitespace-before-property": [
1036
- 2
1037
- ],
1038
- "no-with": [
1039
- 2
1040
- ],
1041
- "nonblock-statement-body-position": [
1042
- 2
1043
- ],
1044
- "object-curly-newline": [
1045
- 0
1046
- ],
1047
- "object-curly-spacing": [
1048
- 2,
1049
- "never"
1050
- ],
1051
- "object-property-newline": [
1052
- 0
1053
- ],
1054
- "object-shorthand": [
1055
- 2,
1056
- "always"
1057
- ],
1058
- "one-var-declaration-per-line": [
1059
- 0
1060
- ],
1061
- "one-var": [
1062
- 0
1063
- ],
1064
- "operator-assignment": [
1065
- 2,
1066
- "always"
1067
- ],
1068
- "operator-linebreak": [
1069
- 2,
1070
- "after"
1071
- ],
1072
- "padded-blocks": [
1073
- 2,
1074
- "never"
1075
- ],
1076
- "padding-line-between-statements": [
1077
- 0
1078
- ],
1079
- "prefer-arrow-callback": [
1080
- 2,
1081
- {
1082
- "allowNamedFunctions": true,
1083
- "allowUnboundThis": true
1084
- }
1085
- ],
1086
- "prefer-const": [
1087
- 2,
1088
- {
1089
- "destructuring": "all",
1090
- "ignoreReadBeforeAssign": true
1091
- }
1092
- ],
1093
- "prefer-destructuring": [
1094
- 0
1095
- ],
1096
- "prefer-exponentiation-operator": [
1097
- 2
1098
- ],
1099
- "prefer-named-capture-group": [
1100
- 0
1101
- ],
1102
- "prefer-numeric-literals": [
1103
- 2
1104
- ],
1105
- "prefer-object-has-own": [
1106
- 0
1107
- ],
1108
- "prefer-object-spread": [
1109
- 0
1110
- ],
1111
- "prefer-promise-reject-errors": [
1112
- 2,
1113
- {
1114
- "allowEmptyReject": false
1115
- }
1116
- ],
1117
- "prefer-regex-literals": [
1118
- 2
1119
- ],
1120
- "prefer-rest-params": [
1121
- 2
1122
- ],
1123
- "prefer-spread": [
1124
- 2
1125
- ],
1126
- "prefer-template": [
1127
- 2
1128
- ],
1129
- "quote-props": [
1130
- 0
1131
- ],
1132
- "quotes": [
1133
- 2,
1134
- "double",
1135
- {
1136
- "avoidEscape": true,
1137
- "allowTemplateLiterals": true
1138
- }
1139
- ],
1140
- "radix": [
1141
- 2,
1142
- "as-needed"
1143
- ],
1144
- "require-atomic-updates": [
1145
- 0
1146
- ],
1147
- "require-await": [
1148
- 0
1149
- ],
1150
- "require-unicode-regexp": [
1151
- 0
1152
- ],
1153
- "require-yield": [
1154
- 2
1155
- ],
1156
- "rest-spread-spacing": [
1157
- 2,
1158
- "never"
1159
- ],
1160
- "semi-spacing": [
1161
- 2,
1162
- {
1163
- "before": false,
1164
- "after": true
1165
- }
1166
- ],
1167
- "semi-style": [
1168
- 2,
1169
- "last"
1170
- ],
1171
- "semi": [
1172
- 2,
1173
- "always"
1174
- ],
1175
- "sonarjs/cognitive-complexity": [
1176
- 0
1177
- ],
1178
- "sonarjs/elseif-without-else": [
1179
- 0
1180
- ],
1181
- "sonarjs/max-switch-cases": [
1182
- 0
1183
- ],
1184
- "sonarjs/no-all-duplicated-branches": [
1185
- 2
1186
- ],
1187
- "sonarjs/no-collapsible-if": [
1188
- 0
1189
- ],
1190
- "sonarjs/no-collection-size-mischeck": [
1191
- 2
1192
- ],
1193
- "sonarjs/no-duplicate-string": [
1194
- 0
1195
- ],
1196
- "sonarjs/no-duplicated-branches": [
1197
- 0
1198
- ],
1199
- "sonarjs/no-element-overwrite": [
1200
- 2
1201
- ],
1202
- "sonarjs/no-empty-collection": [
1203
- 2
1204
- ],
1205
- "sonarjs/no-extra-arguments": [
1206
- 0
1207
- ],
1208
- "sonarjs/no-gratuitous-expressions": [
1209
- 2
1210
- ],
1211
- "sonarjs/no-identical-conditions": [
1212
- 2
1213
- ],
1214
- "sonarjs/no-identical-expressions": [
1215
- 0
1216
- ],
1217
- "sonarjs/no-identical-functions": [
1218
- 0
1219
- ],
1220
- "sonarjs/no-ignored-return": [
1221
- 2
1222
- ],
1223
- "sonarjs/no-inverted-boolean-check": [
1224
- 2
1225
- ],
1226
- "sonarjs/no-nested-switch": [
1227
- 0
1228
- ],
1229
- "sonarjs/no-nested-template-literals": [
1230
- 0
1231
- ],
1232
- "sonarjs/no-one-iteration-loop": [
1233
- 2
1234
- ],
1235
- "sonarjs/no-redundant-boolean": [
1236
- 2
1237
- ],
1238
- "sonarjs/no-redundant-jump": [
1239
- 0
1240
- ],
1241
- "sonarjs/no-same-line-conditional": [
1242
- 2
1243
- ],
1244
- "sonarjs/no-small-switch": [
1245
- 0
1246
- ],
1247
- "sonarjs/no-unused-collection": [
1248
- 2
1249
- ],
1250
- "sonarjs/no-use-of-empty-return-value": [
1251
- 2
1252
- ],
1253
- "sonarjs/no-useless-catch": [
1254
- 0
1255
- ],
1256
- "sonarjs/non-existent-operator": [
1257
- 2
1258
- ],
1259
- "sonarjs/prefer-immediate-return": [
1260
- 0
1261
- ],
1262
- "sonarjs/prefer-object-literal": [
1263
- 2
1264
- ],
1265
- "sonarjs/prefer-single-boolean-return": [
1266
- 0
1267
- ],
1268
- "sonarjs/prefer-while": [
1269
- 2
1270
- ],
1271
- "sort-imports": [
1272
- 0
1273
- ],
1274
- "sort-keys": [
1275
- 0
1276
- ],
1277
- "sort-vars": [
1278
- 0
1279
- ],
1280
- "space-before-blocks": [
1281
- 2,
1282
- "always"
1283
- ],
1284
- "space-before-function-paren": [
1285
- 2,
1286
- {
1287
- "anonymous": "never",
1288
- "named": "never",
1289
- "asyncArrow": "always"
1290
- }
1291
- ],
1292
- "space-in-parens": [
1293
- 2,
1294
- "never"
1295
- ],
1296
- "space-infix-ops": [
1297
- 2
1298
- ],
1299
- "space-unary-ops": [
1300
- 2
1301
- ],
1302
- "spaced-comment": [
1303
- 0
1304
- ],
1305
- "strict": [
1306
- 0
1307
- ],
1308
- "switch-colon-spacing": [
1309
- 2
1310
- ],
1311
- "symbol-description": [
1312
- 2
1313
- ],
1314
- "template-curly-spacing": [
1315
- 2,
1316
- "never"
1317
- ],
1318
- "template-tag-spacing": [
1319
- 2,
1320
- "never"
1321
- ],
1322
- "unicode-bom": [
1323
- 2,
1324
- "never"
1325
- ],
1326
- "unicorn/better-regex": [
1327
- 0
1328
- ],
1329
- "unicorn/catch-error-name": [
1330
- 0
1331
- ],
1332
- "unicorn/consistent-destructuring": [
1333
- 2
1334
- ],
1335
- "unicorn/consistent-function-scoping": [
1336
- 2
1337
- ],
1338
- "unicorn/custom-error-definition": [
1339
- 0
1340
- ],
1341
- "unicorn/empty-brace-spaces": [
1342
- 2
1343
- ],
1344
- "unicorn/error-message": [
1345
- 0
1346
- ],
1347
- "unicorn/escape-case": [
1348
- 0
1349
- ],
1350
- "unicorn/expiring-todo-comments": [
1351
- 0
1352
- ],
1353
- "unicorn/explicit-length-check": [
1354
- 0
1355
- ],
1356
- "unicorn/filename-case": [
1357
- 0
1358
- ],
1359
- "unicorn/import-index": [
1360
- 0
1361
- ],
1362
- "unicorn/import-style": [
1363
- 0
1364
- ],
1365
- "unicorn/new-for-builtins": [
1366
- 2
1367
- ],
1368
- "unicorn/no-abusive-eslint-disable": [
1369
- 0
1370
- ],
1371
- "unicorn/no-array-for-each": [
1372
- 2
1373
- ],
1374
- "unicorn/no-array-instanceof": [
1375
- 0
1376
- ],
1377
- "unicorn/no-array-method-this-argument": [
1378
- 2
1379
- ],
1380
- "unicorn/no-array-push-push": [
1381
- 2
1382
- ],
1383
- "unicorn/no-await-expression-member": [
1384
- 0
1385
- ],
1386
- "unicorn/no-console-spaces": [
1387
- 0
1388
- ],
1389
- "unicorn/no-document-cookie": [
1390
- 2
1391
- ],
1392
- "unicorn/no-empty-file": [
1393
- 2
1394
- ],
1395
- "unicorn/no-fn-reference-in-iterator": [
1396
- 0
1397
- ],
1398
- "unicorn/no-for-loop": [
1399
- 0
1400
- ],
1401
- "unicorn/no-hex-escape": [
1402
- 0
1403
- ],
1404
- "unicorn/no-invalid-remove-event-listener": [
1405
- 2
1406
- ],
1407
- "unicorn/no-keyword-prefix": [
1408
- 0
1409
- ],
1410
- "unicorn/no-lonely-if": [
1411
- 2
1412
- ],
1413
- "unicorn/no-nested-ternary": [
1414
- 0
1415
- ],
1416
- "unicorn/no-new-array": [
1417
- 0
1418
- ],
1419
- "unicorn/no-new-buffer": [
1420
- 0
1421
- ],
1422
- "unicorn/no-null": [
1423
- 0
1424
- ],
1425
- "unicorn/no-object-as-default-parameter": [
1426
- 0
1427
- ],
1428
- "unicorn/no-process-exit": [
1429
- 0
1430
- ],
1431
- "unicorn/no-reduce": [
1432
- 0
1433
- ],
1434
- "unicorn/no-static-only-class": [
1435
- 2
1436
- ],
1437
- "unicorn/no-thenable": [
1438
- 2
1439
- ],
1440
- "unicorn/no-this-assignment": [
1441
- 2
1442
- ],
1443
- "unicorn/no-unreadable-array-destructuring": [
1444
- 0
1445
- ],
1446
- "unicorn/no-unreadable-iife": [
1447
- 2
1448
- ],
1449
- "unicorn/no-unsafe-regex": [
1450
- 0
1451
- ],
1452
- "unicorn/no-unused-properties": [
1453
- 2
1454
- ],
1455
- "unicorn/no-useless-fallback-in-spread": [
1456
- 2
1457
- ],
1458
- "unicorn/no-useless-length-check": [
1459
- 2
1460
- ],
1461
- "unicorn/no-useless-promise-resolve-reject": [
1462
- 2
1463
- ],
1464
- "unicorn/no-useless-spread": [
1465
- 2
1466
- ],
1467
- "unicorn/no-useless-switch-case": [
1468
- 2
1469
- ],
1470
- "unicorn/no-useless-undefined": [
1471
- 0
1472
- ],
1473
- "unicorn/no-zero-fractions": [
1474
- 2
1475
- ],
1476
- "unicorn/number-literal-case": [
1477
- 0
1478
- ],
1479
- "unicorn/numeric-separators-style": [
1480
- 0
1481
- ],
1482
- "unicorn/prefer-add-event-listener": [
1483
- 2
1484
- ],
1485
- "unicorn/prefer-array-find": [
1486
- 2
1487
- ],
1488
- "unicorn/prefer-array-flat-map": [
1489
- 2
1490
- ],
1491
- "unicorn/prefer-array-flat": [
1492
- 2
1493
- ],
1494
- "unicorn/prefer-array-index-of": [
1495
- 2
1496
- ],
1497
- "unicorn/prefer-array-some": [
1498
- 2
1499
- ],
1500
- "unicorn/prefer-at": [
1501
- 0
1502
- ],
1503
- "unicorn/prefer-code-point": [
1504
- 0
1505
- ],
1506
- "unicorn/prefer-dataset": [
1507
- 2
1508
- ],
1509
- "unicorn/prefer-date-now": [
1510
- 2
1511
- ],
1512
- "unicorn/prefer-default-parameters": [
1513
- 0
1514
- ],
1515
- "unicorn/prefer-event-key": [
1516
- 2
1517
- ],
1518
- "unicorn/prefer-event-target": [
1519
- 2
1520
- ],
1521
- "unicorn/prefer-export-from": [
1522
- 2
1523
- ],
1524
- "unicorn/prefer-flat-map": [
1525
- 2
1526
- ],
1527
- "unicorn/prefer-includes": [
1528
- 2
1529
- ],
1530
- "unicorn/prefer-json-parse-buffer": [
1531
- 0
1532
- ],
1533
- "unicorn/prefer-logical-operator-over-ternary": [
1534
- 2
1535
- ],
1536
- "unicorn/prefer-math-trunc": [
1537
- 2
1538
- ],
1539
- "unicorn/prefer-modern-dom-apis": [
1540
- 0
1541
- ],
1542
- "unicorn/prefer-modern-math-apis": [
1543
- 2
1544
- ],
1545
- "unicorn/prefer-module": [
1546
- 0
1547
- ],
1548
- "unicorn/prefer-native-coercion-functions": [
1549
- 2
1550
- ],
1551
- "unicorn/prefer-negative-index": [
1552
- 2
1553
- ],
1554
- "unicorn/prefer-node-append": [
1555
- 0
1556
- ],
1557
- "unicorn/prefer-node-protocol": [
1558
- 0
1559
- ],
1560
- "unicorn/prefer-node-remove": [
1561
- 0
1562
- ],
1563
- "unicorn/prefer-number-properties": [
1564
- 0
1565
- ],
1566
- "unicorn/prefer-object-from-entries": [
1567
- 2
1568
- ],
1569
- "unicorn/prefer-object-has-own": [
1570
- 0
1571
- ],
1572
- "unicorn/prefer-optional-catch-binding": [
1573
- 2
1574
- ],
1575
- "unicorn/prefer-prototype-methods": [
1576
- 0
1577
- ],
1578
- "unicorn/prefer-query-selector": [
1579
- 0
1580
- ],
1581
- "unicorn/prefer-reflect-apply": [
1582
- 0
1583
- ],
1584
- "unicorn/prefer-regexp-test": [
1585
- 2
1586
- ],
1587
- "unicorn/prefer-replace-all": [
1588
- 0
1589
- ],
1590
- "unicorn/prefer-set-has": [
1591
- 0
1592
- ],
1593
- "unicorn/prefer-spread": [
1594
- 0
1595
- ],
1596
- "unicorn/prefer-starts-ends-with": [
1597
- 2
1598
- ],
1599
- "unicorn/prefer-string-slice": [
1600
- 0
1601
- ],
1602
- "unicorn/prefer-switch": [
1603
- 0
1604
- ],
1605
- "unicorn/prefer-ternary": [
1606
- 0
1607
- ],
1608
- "unicorn/prefer-text-content": [
1609
- 2
1610
- ],
1611
- "unicorn/prefer-top-level-await": [
1612
- 0
1613
- ],
1614
- "unicorn/prefer-trim-start-end": [
1615
- 2
1616
- ],
1617
- "unicorn/prefer-type-error": [
1618
- 0
1619
- ],
1620
- "unicorn/prevent-abbreviations": [
1621
- 0
1622
- ],
1623
- "unicorn/relative-url-style": [
1624
- 2
1625
- ],
1626
- "unicorn/require-array-join-separator": [
1627
- 2
1628
- ],
1629
- "unicorn/require-number-to-fixed-digits-argument": [
1630
- 2
1631
- ],
1632
- "unicorn/require-post-message-target-origin": [
1633
- 0
1634
- ],
1635
- "unicorn/string-content": [
1636
- 0
1637
- ],
1638
- "unicorn/template-indent": [
1639
- 2
1640
- ],
1641
- "unicorn/text-encoding-identifier-case": [
1642
- 0
1643
- ],
1644
- "unicorn/throw-new-error": [
1645
- 2
1646
- ],
1647
- "use-isnan": [
1648
- 2
1649
- ],
1650
- "valid-typeof": [
1651
- 2,
1652
- {
1653
- "requireStringLiterals": true
1654
- }
1655
- ],
1656
- "vars-on-top": [
1657
- 0
1658
- ],
1659
- "wrap-iife": [
1660
- 2,
1661
- "inside"
1662
- ],
1663
- "wrap-regex": [
1664
- 0
1665
- ],
1666
- "yield-star-spacing": [
1667
- 2,
1668
- "after"
1669
- ],
1670
- "yoda": [
1671
- 2,
1672
- "never"
1673
- ]
1674
- }
1675
- }
1
+ {"root":true,"reportUnusedDisableDirectives":true,"plugins":["eslint-plugin-unicorn","eslint-plugin-import","eslint-plugin-sonarjs"],"parserOptions":{"sourceType":"module","ecmaVersion":"latest"},"env":{"browser":true,"es2022":true,"node":true},"settings":{"import/extensions":[".js",".jsx"]},"ignorePatterns":["**/vendor/**"],"overrides":[{"files":["**/*worker.js","**/*worker.jsx"],"env":{"worker":true},"rules":{"no-restricted-globals":[2,"addEventListener","blur","close","closed","confirm","defaultStatus","defaultstatus","error","event","external","find","focus","frameElement","frames","history","innerHeight","innerWidth","isFinite","isNaN","length","locationbar","menubar","moveBy","moveTo","name","onblur","onerror","onfocus","onload","onresize","onunload","open","opener","opera","outerHeight","outerWidth","pageXOffset","pageYOffset","parent","print","removeEventListener","resizeBy","resizeTo","screen","screenLeft","screenTop","screenX","screenY","scroll","scrollbars","scrollBy","scrollTo","scrollX","scrollY","status","statusbar","stop","toolbar","top","window"]}},{"files":["**/*test.js","**/*test.jsx"],"env":{"jest":true},"rules":{"unicorn/consistent-function-scoping":[0]}},{"files":["**/*.config.js"],"rules":{"import/no-unused-modules":[0]}}],"rules":{"accessor-pairs":[2],"array-bracket-newline":[0],"array-bracket-spacing":[2,"never"],"array-callback-return":[2,{"checkForEach":true}],"array-element-newline":[0],"arrow-body-style":[0],"arrow-parens":[0],"arrow-spacing":[2,{"before":true,"after":true}],"block-scoped-var":[2],"block-spacing":[0],"brace-style":[2,"1tbs",{"allowSingleLine":true}],"camelcase":[0],"capitalized-comments":[0],"class-methods-use-this":[0],"comma-dangle":[2,"only-multiline"],"comma-spacing":[2,{"before":false,"after":true}],"comma-style":[2,"last"],"complexity":[0],"computed-property-spacing":[2,"never"],"consistent-return":[0],"consistent-this":[0],"constructor-super":[2],"curly":[0],"default-case-last":[2],"default-case":[0],"default-param-last":[0],"dot-location":[2,"property"],"dot-notation":[0],"eol-last":[2],"eqeqeq":[2],"for-direction":[2],"func-call-spacing":[2,"never"],"func-name-matching":[2],"func-names":[0],"func-style":[0],"function-call-argument-newline":[0],"function-paren-newline":[0],"generator-star-spacing":[0],"getter-return":[2],"grouped-accessor-pairs":[2],"guard-for-in":[0],"id-blacklist":[0],"id-denylist":[0],"id-length":[0],"id-match":[0],"implicit-arrow-linebreak":[0],"import/default":[2],"import/dynamic-import-chunkname":[0],"import/export":[2],"import/exports-last":[0],"import/extensions":[2,"ignorePackages"],"import/first":[2],"import/group-exports":[0],"import/max-dependencies":[0],"import/named":[2],"import/namespace":[0],"import/newline-after-import":[0],"import/no-absolute-path":[2],"import/no-amd":[0],"import/no-anonymous-default-export":[0],"import/no-commonjs":[0],"import/no-cycle":[2,{"ignoreExternal":true,"maxDepth":1}],"import/no-default-export":[0],"import/no-deprecated":[0],"import/no-duplicates":[2],"import/no-dynamic-require":[0],"import/no-extraneous-dependencies":[2],"import/no-import-module-exports":[0],"import/no-internal-modules":[0],"import/no-mutable-exports":[0],"import/no-named-as-default-member":[0],"import/no-named-as-default":[2],"import/no-named-default":[0],"import/no-named-export":[0],"import/no-namespace":[0],"import/no-nodejs-modules":[0],"import/no-relative-packages":[0],"import/no-relative-parent-imports":[0],"import/no-restricted-paths":[0],"import/no-self-import":[2],"import/no-unassigned-import":[0],"import/no-unresolved":[2,{"commonjs":true,"ignore":["\\?.+$"]}],"import/no-unused-modules":[2,{"unusedExports":true}],"import/no-useless-path-segments":[2,{"commonjs":true}],"import/no-webpack-loader-syntax":[2],"import/order":[0],"import/prefer-default-export":[0],"import/unambiguous":[0],"indent":[2,2,{"ignoreComments":true,"SwitchCase":1}],"init-declarations":[0],"jsx-quotes":[2,"prefer-double"],"key-spacing":[2],"keyword-spacing":[2],"line-comment-position":[0],"linebreak-style":[2,"unix"],"lines-around-comment":[0],"lines-between-class-members":[0],"max-classes-per-file":[0],"max-depth":[0],"max-len":[0],"max-lines-per-function":[0],"max-lines":[0],"max-nested-callbacks":[0],"max-params":[0],"max-statements-per-line":[0],"max-statements":[0],"multiline-comment-style":[0],"multiline-ternary":[0],"new-cap":[0],"new-parens":[2],"newline-per-chained-call":[0],"no-alert":[0],"no-array-constructor":[2],"no-async-promise-executor":[0],"no-await-in-loop":[0],"no-bitwise":[0],"no-buffer-constructor":[0],"no-caller":[2],"no-case-declarations":[2],"no-class-assign":[2],"no-compare-neg-zero":[2],"no-cond-assign":[2,"except-parens"],"no-confusing-arrow":[0],"no-console":[1,{"allow":["debug","info","warn","error"]}],"no-const-assign":[2],"no-constant-binary-expression":[2],"no-constant-condition":[0],"no-constructor-return":[2],"no-continue":[0],"no-control-regex":[0],"no-debugger":[1],"no-delete-var":[2],"no-div-regex":[0],"no-dupe-args":[2],"no-dupe-class-members":[2],"no-dupe-else-if":[2],"no-dupe-keys":[2],"no-duplicate-case":[2],"no-duplicate-imports":[0],"no-else-return":[0],"no-empty-character-class":[2],"no-empty-function":[0],"no-empty-pattern":[2],"no-empty":[2,{"allowEmptyCatch":true}],"no-eq-null":[2],"no-eval":[2],"no-ex-assign":[2],"no-extend-native":[2],"no-extra-bind":[2],"no-extra-boolean-cast":[2],"no-extra-label":[0],"no-extra-parens":[0],"no-extra-semi":[2],"no-fallthrough":[2],"no-floating-decimal":[0],"no-func-assign":[2],"no-global-assign":[2],"no-implicit-coercion":[0],"no-implicit-globals":[0],"no-implied-eval":[2],"no-import-assign":[2],"no-inline-comments":[0],"no-inner-declarations":[2],"no-invalid-regexp":[2],"no-invalid-this":[0],"no-irregular-whitespace":[2],"no-iterator":[2],"no-label-var":[2],"no-labels":[2],"no-lone-blocks":[2],"no-lonely-if":[0],"no-loop-func":[0],"no-loss-of-precision":[2],"no-magic-numbers":[0],"no-misleading-character-class":[2],"no-mixed-operators":[0],"no-mixed-spaces-and-tabs":[2],"no-multi-assign":[0],"no-multi-spaces":[2,{"ignoreEOLComments":true,"exceptions":{"Property":true}}],"no-multi-str":[2],"no-multiple-empty-lines":[2,{"max":1,"maxEOF":0,"maxBOF":0}],"no-negated-condition":[0],"no-nested-ternary":[0],"no-new-func":[2],"no-new-object":[2],"no-new-symbol":[2],"no-new-wrappers":[2],"no-new":[0],"no-nonoctal-decimal-escape":[2],"no-obj-calls":[2],"no-octal-escape":[2],"no-octal":[2],"no-param-reassign":[0],"no-plusplus":[0],"no-promise-executor-return":[0],"no-proto":[2],"no-prototype-builtins":[2],"no-redeclare":[2],"no-regex-spaces":[2],"no-restricted-exports":[0],"no-restricted-globals":[2,"addEventListener","blur","close","closed","confirm","defaultStatus","defaultstatus","error","event","external","find","focus","frameElement","frames","history","innerHeight","innerWidth","isFinite","isNaN","length","location","locationbar","menubar","moveBy","moveTo","name","onblur","onerror","onfocus","onload","onresize","onunload","open","opener","opera","outerHeight","outerWidth","pageXOffset","pageYOffset","parent","print","removeEventListener","resizeBy","resizeTo","screen","screenLeft","screenTop","screenX","screenY","scroll","scrollbars","self","scrollBy","scrollTo","scrollX","scrollY","status","statusbar","stop","toolbar","top","__dirname","__filename"],"no-restricted-imports":[2,{"patterns":["*.json"]}],"no-restricted-properties":[0],"no-restricted-syntax":[2,"WithStatement","ForInStatement","LabeledStatement"],"no-return-assign":[0],"no-return-await":[0],"no-script-url":[2],"no-self-assign":[2,{"props":true}],"no-self-compare":[2],"no-sequences":[2],"no-setter-return":[2],"no-shadow-restricted-names":[2],"no-shadow":[0],"no-sparse-arrays":[2],"no-tabs":[2],"no-template-curly-in-string":[2],"no-ternary":[0],"no-this-before-super":[2],"no-throw-literal":[2],"no-trailing-spaces":[2],"no-undef-init":[2],"no-undef":[2,{"typeof":true}],"no-undefined":[0],"no-underscore-dangle":[0],"no-unexpected-multiline":[2],"no-unmodified-loop-condition":[2],"no-unneeded-ternary":[0],"no-unreachable-loop":[2],"no-unreachable":[2],"no-unsafe-finally":[2],"no-unsafe-negation":[2],"no-unsafe-optional-chaining":[2],"no-unused-expressions":[2],"no-unused-labels":[2],"no-unused-private-class-members":[2],"no-unused-vars":[2,{"args":"all","caughtErrors":"all","ignoreRestSiblings":false,"argsIgnorePattern":"^_","varsIgnorePattern":"^_","caughtErrorsIgnorePattern":"^_","destructuredArrayIgnorePattern":"^_"}],"no-use-before-define":[2,{"functions":false,"classes":true,"variables":true,"allowNamedExports":true}],"no-useless-backreference":[0],"no-useless-call":[2],"no-useless-catch":[2],"no-useless-computed-key":[2],"no-useless-concat":[2],"no-useless-constructor":[2],"no-useless-escape":[2],"no-useless-rename":[2],"no-useless-return":[0],"no-var":[2],"no-void":[2],"no-warning-comments":[0],"no-whitespace-before-property":[2],"no-with":[2],"nonblock-statement-body-position":[2],"object-curly-newline":[0],"object-curly-spacing":[2,"never"],"object-property-newline":[0],"object-shorthand":[2,"always"],"one-var-declaration-per-line":[0],"one-var":[0],"operator-assignment":[2,"always"],"operator-linebreak":[2,"after"],"padded-blocks":[2,"never"],"padding-line-between-statements":[0],"prefer-arrow-callback":[2,{"allowNamedFunctions":true,"allowUnboundThis":true}],"prefer-const":[2,{"destructuring":"all","ignoreReadBeforeAssign":true}],"prefer-destructuring":[0],"prefer-exponentiation-operator":[2],"prefer-named-capture-group":[0],"prefer-numeric-literals":[2],"prefer-object-has-own":[0],"prefer-object-spread":[0],"prefer-promise-reject-errors":[2,{"allowEmptyReject":false}],"prefer-regex-literals":[2],"prefer-rest-params":[2],"prefer-spread":[2],"prefer-template":[2],"quote-props":[0],"quotes":[2,"double",{"avoidEscape":true,"allowTemplateLiterals":true}],"radix":[2,"as-needed"],"require-atomic-updates":[0],"require-await":[0],"require-unicode-regexp":[0],"require-yield":[2],"rest-spread-spacing":[2,"never"],"semi-spacing":[2,{"before":false,"after":true}],"semi-style":[2,"last"],"semi":[2,"always"],"sonarjs/cognitive-complexity":[0],"sonarjs/elseif-without-else":[0],"sonarjs/max-switch-cases":[0],"sonarjs/no-all-duplicated-branches":[2],"sonarjs/no-collapsible-if":[0],"sonarjs/no-collection-size-mischeck":[2],"sonarjs/no-duplicate-string":[0],"sonarjs/no-duplicated-branches":[0],"sonarjs/no-element-overwrite":[2],"sonarjs/no-empty-collection":[2],"sonarjs/no-extra-arguments":[0],"sonarjs/no-gratuitous-expressions":[2],"sonarjs/no-identical-conditions":[2],"sonarjs/no-identical-expressions":[0],"sonarjs/no-identical-functions":[0],"sonarjs/no-ignored-return":[2],"sonarjs/no-inverted-boolean-check":[2],"sonarjs/no-nested-switch":[0],"sonarjs/no-nested-template-literals":[0],"sonarjs/no-one-iteration-loop":[2],"sonarjs/no-redundant-boolean":[2],"sonarjs/no-redundant-jump":[0],"sonarjs/no-same-line-conditional":[2],"sonarjs/no-small-switch":[0],"sonarjs/no-unused-collection":[2],"sonarjs/no-use-of-empty-return-value":[2],"sonarjs/no-useless-catch":[0],"sonarjs/non-existent-operator":[2],"sonarjs/prefer-immediate-return":[0],"sonarjs/prefer-object-literal":[2],"sonarjs/prefer-single-boolean-return":[0],"sonarjs/prefer-while":[2],"sort-imports":[0],"sort-keys":[0],"sort-vars":[0],"space-before-blocks":[2,"always"],"space-before-function-paren":[2,{"anonymous":"never","named":"never","asyncArrow":"always"}],"space-in-parens":[2,"never"],"space-infix-ops":[2],"space-unary-ops":[2],"spaced-comment":[0],"strict":[0],"switch-colon-spacing":[2],"symbol-description":[2],"template-curly-spacing":[2,"never"],"template-tag-spacing":[2,"never"],"unicode-bom":[2,"never"],"unicorn/better-regex":[0],"unicorn/catch-error-name":[0],"unicorn/consistent-destructuring":[2],"unicorn/consistent-function-scoping":[2],"unicorn/custom-error-definition":[0],"unicorn/empty-brace-spaces":[2],"unicorn/error-message":[0],"unicorn/escape-case":[0],"unicorn/expiring-todo-comments":[0],"unicorn/explicit-length-check":[0],"unicorn/filename-case":[0],"unicorn/import-index":[0],"unicorn/import-style":[0],"unicorn/new-for-builtins":[2],"unicorn/no-abusive-eslint-disable":[0],"unicorn/no-array-for-each":[2],"unicorn/no-array-instanceof":[0],"unicorn/no-array-method-this-argument":[2],"unicorn/no-array-push-push":[2],"unicorn/no-await-expression-member":[0],"unicorn/no-console-spaces":[0],"unicorn/no-document-cookie":[2],"unicorn/no-empty-file":[2],"unicorn/no-fn-reference-in-iterator":[0],"unicorn/no-for-loop":[0],"unicorn/no-hex-escape":[0],"unicorn/no-invalid-remove-event-listener":[2],"unicorn/no-keyword-prefix":[0],"unicorn/no-lonely-if":[2],"unicorn/no-nested-ternary":[0],"unicorn/no-new-array":[0],"unicorn/no-new-buffer":[0],"unicorn/no-null":[0],"unicorn/no-object-as-default-parameter":[0],"unicorn/no-process-exit":[0],"unicorn/no-reduce":[0],"unicorn/no-static-only-class":[2],"unicorn/no-thenable":[2],"unicorn/no-this-assignment":[2],"unicorn/no-unreadable-array-destructuring":[0],"unicorn/no-unreadable-iife":[2],"unicorn/no-unsafe-regex":[0],"unicorn/no-unused-properties":[2],"unicorn/no-useless-fallback-in-spread":[2],"unicorn/no-useless-length-check":[2],"unicorn/no-useless-promise-resolve-reject":[2],"unicorn/no-useless-spread":[2],"unicorn/no-useless-switch-case":[2],"unicorn/no-useless-undefined":[0],"unicorn/no-zero-fractions":[2],"unicorn/number-literal-case":[0],"unicorn/numeric-separators-style":[0],"unicorn/prefer-add-event-listener":[2],"unicorn/prefer-array-find":[2],"unicorn/prefer-array-flat-map":[2],"unicorn/prefer-array-flat":[2],"unicorn/prefer-array-index-of":[2],"unicorn/prefer-array-some":[2],"unicorn/prefer-at":[0],"unicorn/prefer-code-point":[0],"unicorn/prefer-dataset":[2],"unicorn/prefer-date-now":[2],"unicorn/prefer-default-parameters":[0],"unicorn/prefer-event-key":[2],"unicorn/prefer-event-target":[2],"unicorn/prefer-export-from":[2],"unicorn/prefer-flat-map":[2],"unicorn/prefer-includes":[2],"unicorn/prefer-json-parse-buffer":[0],"unicorn/prefer-logical-operator-over-ternary":[2],"unicorn/prefer-math-trunc":[2],"unicorn/prefer-modern-dom-apis":[0],"unicorn/prefer-modern-math-apis":[2],"unicorn/prefer-module":[0],"unicorn/prefer-native-coercion-functions":[2],"unicorn/prefer-negative-index":[2],"unicorn/prefer-node-append":[0],"unicorn/prefer-node-protocol":[0],"unicorn/prefer-node-remove":[0],"unicorn/prefer-number-properties":[0],"unicorn/prefer-object-from-entries":[2],"unicorn/prefer-object-has-own":[0],"unicorn/prefer-optional-catch-binding":[2],"unicorn/prefer-prototype-methods":[0],"unicorn/prefer-query-selector":[0],"unicorn/prefer-reflect-apply":[0],"unicorn/prefer-regexp-test":[2],"unicorn/prefer-replace-all":[0],"unicorn/prefer-set-has":[0],"unicorn/prefer-spread":[0],"unicorn/prefer-starts-ends-with":[2],"unicorn/prefer-string-slice":[0],"unicorn/prefer-switch":[0],"unicorn/prefer-ternary":[0],"unicorn/prefer-text-content":[2],"unicorn/prefer-top-level-await":[0],"unicorn/prefer-trim-start-end":[2],"unicorn/prefer-type-error":[0],"unicorn/prevent-abbreviations":[0],"unicorn/relative-url-style":[2],"unicorn/require-array-join-separator":[2],"unicorn/require-number-to-fixed-digits-argument":[2],"unicorn/require-post-message-target-origin":[0],"unicorn/string-content":[0],"unicorn/template-indent":[2],"unicorn/text-encoding-identifier-case":[0],"unicorn/throw-new-error":[2],"use-isnan":[2],"valid-typeof":[2,{"requireStringLiterals":true}],"vars-on-top":[0],"wrap-iife":[2,"inside"],"wrap-regex":[0],"yield-star-spacing":[2,"after"],"yoda":[2,"never"]}}