@toptal/davinci-syntax 13.2.4-alpha-fx-2755-codebase-specific-workflows.8 → 13.2.4

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,1141 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
4
+ "{
5
+ 'space-before-function-paren': [
6
+ 'error',
7
+ {
8
+ anonymous: 'always',
9
+ named: 'never',
10
+ asyncArrow: 'always',
11
+ },
12
+ ],
13
+ 'padding-line-between-statements': [
14
+ 'error',
15
+ {
16
+ blankLine: 'always',
17
+ prev: '*',
18
+ next: 'return',
19
+ },
20
+ {
21
+ blankLine: 'always',
22
+ prev: [
23
+ 'const',
24
+ 'let',
25
+ 'var',
26
+ ],
27
+ next: '*',
28
+ },
29
+ {
30
+ blankLine: 'any',
31
+ prev: [
32
+ 'const',
33
+ 'let',
34
+ 'var',
35
+ ],
36
+ next: [
37
+ 'const',
38
+ 'let',
39
+ 'var',
40
+ ],
41
+ },
42
+ ],
43
+ 'prefer-const': [
44
+ 'error',
45
+ {
46
+ destructuring: 'any',
47
+ ignoreReadBeforeAssign: false,
48
+ },
49
+ ],
50
+ 'id-length': [
51
+ 'error',
52
+ {
53
+ properties: 'never',
54
+ exceptions: [
55
+ 'e',
56
+ '_',
57
+ ],
58
+ min: 2,
59
+ },
60
+ ],
61
+ quotes: [
62
+ 'error',
63
+ 'single',
64
+ {
65
+ avoidEscape: true,
66
+ allowTemplateLiterals: true,
67
+ },
68
+ ],
69
+ 'no-else-return': [
70
+ 'error',
71
+ ],
72
+ 'react-hooks/rules-of-hooks': [
73
+ 'error',
74
+ ],
75
+ 'react-hooks/exhaustive-deps': [
76
+ 'warn',
77
+ ],
78
+ 'react/jsx-fragments': [
79
+ 'error',
80
+ 'syntax',
81
+ ],
82
+ 'react/jsx-closing-bracket-location': [
83
+ 'error',
84
+ 'line-aligned',
85
+ ],
86
+ 'react/jsx-no-target-blank': [
87
+ 'warn',
88
+ {
89
+ allowReferrer: true,
90
+ links: true,
91
+ forms: false,
92
+ },
93
+ ],
94
+ 'react/no-multi-comp': [
95
+ 'error',
96
+ {
97
+ ignoreStateless: true,
98
+ },
99
+ ],
100
+ 'react/sort-comp': [
101
+ 'error',
102
+ {
103
+ order: [
104
+ 'static-methods',
105
+ 'instance-variables',
106
+ 'lifecycle',
107
+ 'getters',
108
+ 'setters',
109
+ '/^on.+$/',
110
+ '/^handle.+$/',
111
+ '/^(get|set)(?!(InitialState$|DefaultProps$|ChildContext$)).+$/',
112
+ 'instance-methods',
113
+ 'everything-else',
114
+ 'rendering',
115
+ ],
116
+ groups: {
117
+ lifecycle: [
118
+ 'displayName',
119
+ 'propTypes',
120
+ 'contextTypes',
121
+ 'childContextTypes',
122
+ 'mixins',
123
+ 'statics',
124
+ 'defaultProps',
125
+ 'constructor',
126
+ 'getDefaultProps',
127
+ 'getInitialState',
128
+ 'state',
129
+ 'getChildContext',
130
+ 'componentWillMount',
131
+ 'componentDidMount',
132
+ 'componentWillReceiveProps',
133
+ 'shouldComponentUpdate',
134
+ 'componentWillUpdate',
135
+ 'componentDidUpdate',
136
+ 'componentWillUnmount',
137
+ ],
138
+ rendering: [
139
+ '/^render.+$/',
140
+ 'render',
141
+ ],
142
+ },
143
+ },
144
+ ],
145
+ 'react/jsx-props-no-spreading': [
146
+ 'off',
147
+ ],
148
+ 'react/no-array-index-key': [
149
+ 'error',
150
+ ],
151
+ 'import/order': [
152
+ 'error',
153
+ {
154
+ groups: [
155
+ [
156
+ 'builtin',
157
+ 'external',
158
+ ],
159
+ 'internal',
160
+ [
161
+ 'parent',
162
+ 'sibling',
163
+ 'index',
164
+ 'unknown',
165
+ ],
166
+ ],
167
+ pathGroups: [
168
+ {
169
+ pattern: '~/**',
170
+ group: 'unknown',
171
+ },
172
+ ],
173
+ 'newlines-between': 'always',
174
+ warnOnUnassignedImports: false,
175
+ },
176
+ ],
177
+ 'unused-imports/no-unused-imports': [
178
+ 'warn',
179
+ ],
180
+ 'import/no-duplicates': [
181
+ 'warn',
182
+ ],
183
+ 'import/no-extraneous-dependencies': [
184
+ 'error',
185
+ ],
186
+ 'import/no-relative-packages': [
187
+ 'warn',
188
+ ],
189
+ 'node/no-restricted-require': [
190
+ 'error',
191
+ [
192
+ '@toptal/picasso-shared',
193
+ '@toptal/picasso-shared/**/*',
194
+ ],
195
+ ],
196
+ '@typescript-eslint/array-type': [
197
+ 'error',
198
+ {
199
+ default: 'array',
200
+ },
201
+ ],
202
+ '@typescript-eslint/explicit-function-return-type': [
203
+ 'off',
204
+ ],
205
+ '@typescript-eslint/no-non-null-assertion': [
206
+ 'warn',
207
+ ],
208
+ '@typescript-eslint/method-signature-style': [
209
+ 'warn',
210
+ ],
211
+ '@typescript-eslint/no-non-null-asserted-optional-chain': [
212
+ 'off',
213
+ ],
214
+ '@typescript-eslint/explicit-member-accessibility': [
215
+ 'off',
216
+ ],
217
+ '@typescript-eslint/no-var-requires': [
218
+ 'off',
219
+ ],
220
+ 'no-use-before-define': [
221
+ 'off',
222
+ ],
223
+ '@typescript-eslint/no-use-before-define': [
224
+ 'error',
225
+ {
226
+ functions: false,
227
+ classes: false,
228
+ variables: false,
229
+ typedefs: false,
230
+ },
231
+ ],
232
+ '@typescript-eslint/no-explicit-any': [
233
+ 'warn',
234
+ ],
235
+ '@typescript-eslint/ban-ts-comment': [
236
+ 'warn',
237
+ ],
238
+ '@typescript-eslint/no-empty-interface': [
239
+ 'off',
240
+ ],
241
+ '@typescript-eslint/member-delimiter-style': [
242
+ 'off',
243
+ ],
244
+ 'no-shadow': [
245
+ 'off',
246
+ ],
247
+ '@typescript-eslint/no-shadow': [
248
+ 'warn',
249
+ ],
250
+ '@typescript-eslint/explicit-module-boundary-types': [
251
+ 'off',
252
+ ],
253
+ camelcase: [
254
+ 'off',
255
+ ],
256
+ '@typescript-eslint/naming-convention': [
257
+ 'error',
258
+ {
259
+ selector: 'property',
260
+ format: null,
261
+ },
262
+ ],
263
+ 'no-unused-vars': [
264
+ 'off',
265
+ ],
266
+ '@typescript-eslint/no-unused-vars': [
267
+ 'error',
268
+ ],
269
+ 'func-call-spacing': [
270
+ 'off',
271
+ ],
272
+ '@typescript-eslint/func-call-spacing': [
273
+ 'error',
274
+ ],
275
+ 'no-unused-expressions': [
276
+ 'off',
277
+ ],
278
+ '@typescript-eslint/no-unused-expressions': [
279
+ 'error',
280
+ ],
281
+ '@typescript-eslint/no-empty-function': [
282
+ 'off',
283
+ ],
284
+ '@typescript-eslint/ban-types': [
285
+ 'error',
286
+ {
287
+ extendDefaults: true,
288
+ types: {
289
+ '{}': false,
290
+ Function: false,
291
+ object: false,
292
+ },
293
+ },
294
+ ],
295
+ '@toptal/davinci/no-package-self-imports': [
296
+ 'error',
297
+ ],
298
+ '@toptal/davinci/no-inline-css': [
299
+ 'error',
300
+ ],
301
+ '@toptal/davinci/no-private-package-imports': [
302
+ 'error',
303
+ ],
304
+ '@toptal/davinci/consistent-data-testid': [
305
+ 'warn',
306
+ ],
307
+ '@toptal/davinci/consistent-component-props-types': [
308
+ 'warn',
309
+ ],
310
+ '@toptal/davinci/no-as-prop-for-css-styled-components': [
311
+ 'error',
312
+ ],
313
+ '@toptal/davinci/no-forwarded-as-prop-for-non-styled-components': [
314
+ 'warn',
315
+ ],
316
+ complexity: [
317
+ 'warn',
318
+ {
319
+ max: 10,
320
+ },
321
+ ],
322
+ 'max-params': [
323
+ 'warn',
324
+ 3,
325
+ ],
326
+ 'max-statements': [
327
+ 'warn',
328
+ 20,
329
+ ],
330
+ 'max-statements-per-line': [
331
+ 'warn',
332
+ {
333
+ max: 1,
334
+ },
335
+ ],
336
+ 'max-nested-callbacks': [
337
+ 'warn',
338
+ {
339
+ max: 3,
340
+ },
341
+ ],
342
+ 'max-depth': [
343
+ 'warn',
344
+ {
345
+ max: 3,
346
+ },
347
+ ],
348
+ 'max-lines': [
349
+ 'error',
350
+ {
351
+ max: 300,
352
+ skipBlankLines: true,
353
+ skipComments: true,
354
+ },
355
+ ],
356
+ 'max-lines-per-function': [
357
+ 'warn',
358
+ {
359
+ max: 200,
360
+ skipBlankLines: true,
361
+ skipComments: true,
362
+ },
363
+ ],
364
+ 'no-param-reassign': [
365
+ 'warn',
366
+ ],
367
+ 'no-invalid-this': [
368
+ 'warn',
369
+ ],
370
+ 'func-style': [
371
+ 'error',
372
+ 'expression',
373
+ ],
374
+ 'no-inline-styles/no-inline-styles': [
375
+ 'warn',
376
+ ],
377
+ curly: [
378
+ 'error',
379
+ 'all',
380
+ ],
381
+ 'todo-plz/ticket-ref': [
382
+ 'warn',
383
+ {
384
+ commentPattern: 'TODO:\\\\\\\\s(.|\\\\\\\\n|\\\\\\\\r)*\\\\\\\\[(\\\\\\\\w+-[0-9]+[,\\\\\\\\s]*)+\\\\\\\\].*',
385
+ },
386
+ ],
387
+ 'lines-around-comment': [
388
+ 0,
389
+ ],
390
+ 'max-len': [
391
+ 0,
392
+ ],
393
+ 'no-confusing-arrow': [
394
+ 0,
395
+ ],
396
+ 'no-mixed-operators': [
397
+ 0,
398
+ ],
399
+ 'no-tabs': [
400
+ 0,
401
+ ],
402
+ 'no-unexpected-multiline': [
403
+ 0,
404
+ ],
405
+ '@typescript-eslint/quotes': [
406
+ 0,
407
+ ],
408
+ 'babel/quotes': [
409
+ 0,
410
+ ],
411
+ 'vue/html-self-closing': [
412
+ 0,
413
+ ],
414
+ 'vue/max-len': [
415
+ 0,
416
+ ],
417
+ 'array-bracket-newline': [
418
+ 'off',
419
+ ],
420
+ 'array-bracket-spacing': [
421
+ 'off',
422
+ ],
423
+ 'array-element-newline': [
424
+ 'off',
425
+ ],
426
+ 'arrow-parens': [
427
+ 'off',
428
+ ],
429
+ 'arrow-spacing': [
430
+ 'off',
431
+ ],
432
+ 'block-spacing': [
433
+ 'off',
434
+ ],
435
+ 'brace-style': [
436
+ 'off',
437
+ ],
438
+ 'comma-dangle': [
439
+ 'off',
440
+ ],
441
+ 'comma-spacing': [
442
+ 'off',
443
+ ],
444
+ 'comma-style': [
445
+ 'off',
446
+ ],
447
+ 'computed-property-spacing': [
448
+ 'off',
449
+ ],
450
+ 'dot-location': [
451
+ 'off',
452
+ ],
453
+ 'eol-last': [
454
+ 'off',
455
+ ],
456
+ 'function-call-argument-newline': [
457
+ 'off',
458
+ ],
459
+ 'function-paren-newline': [
460
+ 'off',
461
+ ],
462
+ 'generator-star': [
463
+ 'off',
464
+ ],
465
+ 'generator-star-spacing': [
466
+ 'off',
467
+ ],
468
+ 'implicit-arrow-linebreak': [
469
+ 'off',
470
+ ],
471
+ indent: [
472
+ 'off',
473
+ ],
474
+ 'jsx-quotes': [
475
+ 'off',
476
+ ],
477
+ 'key-spacing': [
478
+ 'off',
479
+ ],
480
+ 'keyword-spacing': [
481
+ 'off',
482
+ ],
483
+ 'linebreak-style': [
484
+ 'off',
485
+ ],
486
+ 'multiline-ternary': [
487
+ 'off',
488
+ ],
489
+ 'newline-per-chained-call': [
490
+ 'off',
491
+ ],
492
+ 'new-parens': [
493
+ 'off',
494
+ ],
495
+ 'no-arrow-condition': [
496
+ 'off',
497
+ ],
498
+ 'no-comma-dangle': [
499
+ 'off',
500
+ ],
501
+ 'no-extra-parens': [
502
+ 'off',
503
+ ],
504
+ 'no-extra-semi': [
505
+ 'off',
506
+ ],
507
+ 'no-floating-decimal': [
508
+ 'off',
509
+ ],
510
+ 'no-mixed-spaces-and-tabs': [
511
+ 'off',
512
+ ],
513
+ 'no-multi-spaces': [
514
+ 'off',
515
+ ],
516
+ 'no-multiple-empty-lines': [
517
+ 'off',
518
+ ],
519
+ 'no-reserved-keys': [
520
+ 'off',
521
+ ],
522
+ 'no-space-before-semi': [
523
+ 'off',
524
+ ],
525
+ 'no-trailing-spaces': [
526
+ 'off',
527
+ ],
528
+ 'no-whitespace-before-property': [
529
+ 'off',
530
+ ],
531
+ 'no-wrap-func': [
532
+ 'off',
533
+ ],
534
+ 'nonblock-statement-body-position': [
535
+ 'off',
536
+ ],
537
+ 'object-curly-newline': [
538
+ 'off',
539
+ ],
540
+ 'object-curly-spacing': [
541
+ 'off',
542
+ ],
543
+ 'object-property-newline': [
544
+ 'off',
545
+ ],
546
+ 'one-var-declaration-per-line': [
547
+ 'off',
548
+ ],
549
+ 'operator-linebreak': [
550
+ 'off',
551
+ ],
552
+ 'padded-blocks': [
553
+ 'off',
554
+ ],
555
+ 'quote-props': [
556
+ 'off',
557
+ ],
558
+ 'rest-spread-spacing': [
559
+ 'off',
560
+ ],
561
+ semi: [
562
+ 'off',
563
+ ],
564
+ 'semi-spacing': [
565
+ 'off',
566
+ ],
567
+ 'semi-style': [
568
+ 'off',
569
+ ],
570
+ 'space-after-function-name': [
571
+ 'off',
572
+ ],
573
+ 'space-after-keywords': [
574
+ 'off',
575
+ ],
576
+ 'space-before-blocks': [
577
+ 'off',
578
+ ],
579
+ 'space-before-function-parentheses': [
580
+ 'off',
581
+ ],
582
+ 'space-before-keywords': [
583
+ 'off',
584
+ ],
585
+ 'space-in-brackets': [
586
+ 'off',
587
+ ],
588
+ 'space-in-parens': [
589
+ 'off',
590
+ ],
591
+ 'space-infix-ops': [
592
+ 'off',
593
+ ],
594
+ 'space-return-throw-case': [
595
+ 'off',
596
+ ],
597
+ 'space-unary-ops': [
598
+ 'off',
599
+ ],
600
+ 'space-unary-word-ops': [
601
+ 'off',
602
+ ],
603
+ 'switch-colon-spacing': [
604
+ 'off',
605
+ ],
606
+ 'template-curly-spacing': [
607
+ 'off',
608
+ ],
609
+ 'template-tag-spacing': [
610
+ 'off',
611
+ ],
612
+ 'unicode-bom': [
613
+ 'off',
614
+ ],
615
+ 'wrap-iife': [
616
+ 'off',
617
+ ],
618
+ 'wrap-regex': [
619
+ 'off',
620
+ ],
621
+ 'yield-star-spacing': [
622
+ 'off',
623
+ ],
624
+ '@babel/object-curly-spacing': [
625
+ 'off',
626
+ ],
627
+ '@babel/semi': [
628
+ 'off',
629
+ ],
630
+ '@typescript-eslint/brace-style': [
631
+ 'off',
632
+ ],
633
+ '@typescript-eslint/comma-dangle': [
634
+ 'off',
635
+ ],
636
+ '@typescript-eslint/comma-spacing': [
637
+ 'off',
638
+ ],
639
+ '@typescript-eslint/indent': [
640
+ 'off',
641
+ ],
642
+ '@typescript-eslint/keyword-spacing': [
643
+ 'off',
644
+ ],
645
+ '@typescript-eslint/no-extra-parens': [
646
+ 'off',
647
+ ],
648
+ '@typescript-eslint/no-extra-semi': [
649
+ 'off',
650
+ ],
651
+ '@typescript-eslint/object-curly-spacing': [
652
+ 'off',
653
+ ],
654
+ '@typescript-eslint/semi': [
655
+ 'off',
656
+ ],
657
+ '@typescript-eslint/space-before-blocks': [
658
+ 'off',
659
+ ],
660
+ '@typescript-eslint/space-before-function-paren': [
661
+ 'off',
662
+ ],
663
+ '@typescript-eslint/space-infix-ops': [
664
+ 'off',
665
+ ],
666
+ '@typescript-eslint/type-annotation-spacing': [
667
+ 'off',
668
+ ],
669
+ 'babel/object-curly-spacing': [
670
+ 'off',
671
+ ],
672
+ 'babel/semi': [
673
+ 'off',
674
+ ],
675
+ 'flowtype/boolean-style': [
676
+ 'off',
677
+ ],
678
+ 'flowtype/delimiter-dangle': [
679
+ 'off',
680
+ ],
681
+ 'flowtype/generic-spacing': [
682
+ 'off',
683
+ ],
684
+ 'flowtype/object-type-curly-spacing': [
685
+ 'off',
686
+ ],
687
+ 'flowtype/object-type-delimiter': [
688
+ 'off',
689
+ ],
690
+ 'flowtype/quotes': [
691
+ 'off',
692
+ ],
693
+ 'flowtype/semi': [
694
+ 'off',
695
+ ],
696
+ 'flowtype/space-after-type-colon': [
697
+ 'off',
698
+ ],
699
+ 'flowtype/space-before-generic-bracket': [
700
+ 'off',
701
+ ],
702
+ 'flowtype/space-before-type-colon': [
703
+ 'off',
704
+ ],
705
+ 'flowtype/union-intersection-spacing': [
706
+ 'off',
707
+ ],
708
+ 'react/jsx-child-element-spacing': [
709
+ 'off',
710
+ ],
711
+ 'react/jsx-closing-tag-location': [
712
+ 'off',
713
+ ],
714
+ 'react/jsx-curly-newline': [
715
+ 'off',
716
+ ],
717
+ 'react/jsx-curly-spacing': [
718
+ 'off',
719
+ ],
720
+ 'react/jsx-equals-spacing': [
721
+ 'off',
722
+ ],
723
+ 'react/jsx-first-prop-new-line': [
724
+ 'off',
725
+ ],
726
+ 'react/jsx-indent': [
727
+ 'off',
728
+ ],
729
+ 'react/jsx-indent-props': [
730
+ 'off',
731
+ ],
732
+ 'react/jsx-max-props-per-line': [
733
+ 'off',
734
+ ],
735
+ 'react/jsx-newline': [
736
+ 'off',
737
+ ],
738
+ 'react/jsx-one-expression-per-line': [
739
+ 'off',
740
+ ],
741
+ 'react/jsx-props-no-multi-spaces': [
742
+ 'off',
743
+ ],
744
+ 'react/jsx-tag-spacing': [
745
+ 'off',
746
+ ],
747
+ 'react/jsx-wrap-multilines': [
748
+ 'off',
749
+ ],
750
+ 'standard/array-bracket-even-spacing': [
751
+ 'off',
752
+ ],
753
+ 'standard/computed-property-even-spacing': [
754
+ 'off',
755
+ ],
756
+ 'standard/object-curly-even-spacing': [
757
+ 'off',
758
+ ],
759
+ 'unicorn/empty-brace-spaces': [
760
+ 'off',
761
+ ],
762
+ 'unicorn/no-nested-ternary': [
763
+ 'off',
764
+ ],
765
+ 'unicorn/number-literal-case': [
766
+ 'off',
767
+ ],
768
+ 'vue/array-bracket-newline': [
769
+ 'off',
770
+ ],
771
+ 'vue/array-bracket-spacing': [
772
+ 'off',
773
+ ],
774
+ 'vue/arrow-spacing': [
775
+ 'off',
776
+ ],
777
+ 'vue/block-spacing': [
778
+ 'off',
779
+ ],
780
+ 'vue/block-tag-newline': [
781
+ 'off',
782
+ ],
783
+ 'vue/brace-style': [
784
+ 'off',
785
+ ],
786
+ 'vue/comma-dangle': [
787
+ 'off',
788
+ ],
789
+ 'vue/comma-spacing': [
790
+ 'off',
791
+ ],
792
+ 'vue/comma-style': [
793
+ 'off',
794
+ ],
795
+ 'vue/dot-location': [
796
+ 'off',
797
+ ],
798
+ 'vue/func-call-spacing': [
799
+ 'off',
800
+ ],
801
+ 'vue/html-closing-bracket-newline': [
802
+ 'off',
803
+ ],
804
+ 'vue/html-closing-bracket-spacing': [
805
+ 'off',
806
+ ],
807
+ 'vue/html-end-tags': [
808
+ 'off',
809
+ ],
810
+ 'vue/html-indent': [
811
+ 'off',
812
+ ],
813
+ 'vue/html-quotes': [
814
+ 'off',
815
+ ],
816
+ 'vue/key-spacing': [
817
+ 'off',
818
+ ],
819
+ 'vue/keyword-spacing': [
820
+ 'off',
821
+ ],
822
+ 'vue/max-attributes-per-line': [
823
+ 'off',
824
+ ],
825
+ 'vue/multiline-html-element-content-newline': [
826
+ 'off',
827
+ ],
828
+ 'vue/mustache-interpolation-spacing': [
829
+ 'off',
830
+ ],
831
+ 'vue/no-extra-parens': [
832
+ 'off',
833
+ ],
834
+ 'vue/no-multi-spaces': [
835
+ 'off',
836
+ ],
837
+ 'vue/no-spaces-around-equal-signs-in-attribute': [
838
+ 'off',
839
+ ],
840
+ 'vue/object-curly-newline': [
841
+ 'off',
842
+ ],
843
+ 'vue/object-curly-spacing': [
844
+ 'off',
845
+ ],
846
+ 'vue/object-property-newline': [
847
+ 'off',
848
+ ],
849
+ 'vue/operator-linebreak': [
850
+ 'off',
851
+ ],
852
+ 'vue/quote-props': [
853
+ 'off',
854
+ ],
855
+ 'vue/script-indent': [
856
+ 'off',
857
+ ],
858
+ 'vue/singleline-html-element-content-newline': [
859
+ 'off',
860
+ ],
861
+ 'vue/space-in-parens': [
862
+ 'off',
863
+ ],
864
+ 'vue/space-infix-ops': [
865
+ 'off',
866
+ ],
867
+ 'vue/space-unary-ops': [
868
+ 'off',
869
+ ],
870
+ 'vue/template-curly-spacing': [
871
+ 'off',
872
+ ],
873
+ 'indent-legacy': [
874
+ 'off',
875
+ ],
876
+ 'no-spaced-func': [
877
+ 'off',
878
+ ],
879
+ 'react/jsx-space-before-closing': [
880
+ 'off',
881
+ ],
882
+ 'cypress/no-assigning-return-values': [
883
+ 'error',
884
+ ],
885
+ 'cypress/no-unnecessary-waiting': [
886
+ 'error',
887
+ ],
888
+ 'cypress/no-async-tests': [
889
+ 'error',
890
+ ],
891
+ '@typescript-eslint/adjacent-overload-signatures': [
892
+ 'error',
893
+ ],
894
+ 'no-array-constructor': [
895
+ 'off',
896
+ ],
897
+ '@typescript-eslint/no-array-constructor': [
898
+ 'error',
899
+ ],
900
+ 'no-empty-function': [
901
+ 'off',
902
+ ],
903
+ '@typescript-eslint/no-extra-non-null-assertion': [
904
+ 'error',
905
+ ],
906
+ '@typescript-eslint/no-inferrable-types': [
907
+ 'error',
908
+ ],
909
+ 'no-loss-of-precision': [
910
+ 'off',
911
+ ],
912
+ '@typescript-eslint/no-loss-of-precision': [
913
+ 'error',
914
+ ],
915
+ '@typescript-eslint/no-misused-new': [
916
+ 'error',
917
+ ],
918
+ '@typescript-eslint/no-namespace': [
919
+ 'error',
920
+ ],
921
+ '@typescript-eslint/no-this-alias': [
922
+ 'error',
923
+ ],
924
+ '@typescript-eslint/no-unnecessary-type-constraint': [
925
+ 'error',
926
+ ],
927
+ '@typescript-eslint/prefer-as-const': [
928
+ 'error',
929
+ ],
930
+ '@typescript-eslint/prefer-namespace-keyword': [
931
+ 'error',
932
+ ],
933
+ '@typescript-eslint/triple-slash-reference': [
934
+ 'error',
935
+ ],
936
+ 'constructor-super': [
937
+ 'error',
938
+ ],
939
+ 'for-direction': [
940
+ 'error',
941
+ ],
942
+ 'getter-return': [
943
+ 'error',
944
+ ],
945
+ 'no-async-promise-executor': [
946
+ 'error',
947
+ ],
948
+ 'no-case-declarations': [
949
+ 'error',
950
+ ],
951
+ 'no-class-assign': [
952
+ 'error',
953
+ ],
954
+ 'no-compare-neg-zero': [
955
+ 'error',
956
+ ],
957
+ 'no-cond-assign': [
958
+ 'error',
959
+ ],
960
+ 'no-const-assign': [
961
+ 'error',
962
+ ],
963
+ 'no-constant-condition': [
964
+ 'error',
965
+ ],
966
+ 'no-control-regex': [
967
+ 'error',
968
+ ],
969
+ 'no-debugger': [
970
+ 'error',
971
+ ],
972
+ 'no-delete-var': [
973
+ 'error',
974
+ ],
975
+ 'no-dupe-args': [
976
+ 'error',
977
+ ],
978
+ 'no-dupe-class-members': [
979
+ 'error',
980
+ ],
981
+ 'no-dupe-else-if': [
982
+ 'error',
983
+ ],
984
+ 'no-dupe-keys': [
985
+ 'error',
986
+ ],
987
+ 'no-duplicate-case': [
988
+ 'error',
989
+ ],
990
+ 'no-empty': [
991
+ 'error',
992
+ ],
993
+ 'no-empty-character-class': [
994
+ 'error',
995
+ ],
996
+ 'no-empty-pattern': [
997
+ 'error',
998
+ ],
999
+ 'no-ex-assign': [
1000
+ 'error',
1001
+ ],
1002
+ 'no-extra-boolean-cast': [
1003
+ 'error',
1004
+ ],
1005
+ 'no-fallthrough': [
1006
+ 'error',
1007
+ ],
1008
+ 'no-func-assign': [
1009
+ 'error',
1010
+ ],
1011
+ 'no-global-assign': [
1012
+ 'error',
1013
+ ],
1014
+ 'no-import-assign': [
1015
+ 'error',
1016
+ ],
1017
+ 'no-inner-declarations': [
1018
+ 'error',
1019
+ ],
1020
+ 'no-invalid-regexp': [
1021
+ 'error',
1022
+ ],
1023
+ 'no-irregular-whitespace': [
1024
+ 'error',
1025
+ ],
1026
+ 'no-misleading-character-class': [
1027
+ 'error',
1028
+ ],
1029
+ 'no-new-symbol': [
1030
+ 'error',
1031
+ ],
1032
+ 'no-nonoctal-decimal-escape': [
1033
+ 'error',
1034
+ ],
1035
+ 'no-obj-calls': [
1036
+ 'error',
1037
+ ],
1038
+ 'no-octal': [
1039
+ 'error',
1040
+ ],
1041
+ 'no-prototype-builtins': [
1042
+ 'error',
1043
+ ],
1044
+ 'no-redeclare': [
1045
+ 'error',
1046
+ ],
1047
+ 'no-regex-spaces': [
1048
+ 'error',
1049
+ ],
1050
+ 'no-self-assign': [
1051
+ 'error',
1052
+ ],
1053
+ 'no-setter-return': [
1054
+ 'error',
1055
+ ],
1056
+ 'no-shadow-restricted-names': [
1057
+ 'error',
1058
+ ],
1059
+ 'no-sparse-arrays': [
1060
+ 'error',
1061
+ ],
1062
+ 'no-this-before-super': [
1063
+ 'error',
1064
+ ],
1065
+ 'no-undef': [
1066
+ 'error',
1067
+ ],
1068
+ 'no-unreachable': [
1069
+ 'error',
1070
+ ],
1071
+ 'no-unsafe-finally': [
1072
+ 'error',
1073
+ ],
1074
+ 'no-unsafe-negation': [
1075
+ 'error',
1076
+ ],
1077
+ 'no-unsafe-optional-chaining': [
1078
+ 'error',
1079
+ ],
1080
+ 'no-unused-labels': [
1081
+ 'error',
1082
+ ],
1083
+ 'no-useless-backreference': [
1084
+ 'error',
1085
+ ],
1086
+ 'no-useless-catch': [
1087
+ 'error',
1088
+ ],
1089
+ 'no-useless-escape': [
1090
+ 'error',
1091
+ ],
1092
+ 'no-with': [
1093
+ 'error',
1094
+ ],
1095
+ 'require-yield': [
1096
+ 'error',
1097
+ ],
1098
+ 'use-isnan': [
1099
+ 'error',
1100
+ ],
1101
+ 'valid-typeof': [
1102
+ 'error',
1103
+ ],
1104
+ 'promise/always-return': [
1105
+ 'error',
1106
+ ],
1107
+ 'promise/no-return-wrap': [
1108
+ 'error',
1109
+ ],
1110
+ 'promise/param-names': [
1111
+ 'error',
1112
+ ],
1113
+ 'promise/catch-or-return': [
1114
+ 'error',
1115
+ ],
1116
+ 'promise/no-native': [
1117
+ 'off',
1118
+ ],
1119
+ 'promise/no-nesting': [
1120
+ 'warn',
1121
+ ],
1122
+ 'promise/no-promise-in-callback': [
1123
+ 'warn',
1124
+ ],
1125
+ 'promise/no-callback-in-promise': [
1126
+ 'warn',
1127
+ ],
1128
+ 'promise/avoid-new': [
1129
+ 'off',
1130
+ ],
1131
+ 'promise/no-new-statics': [
1132
+ 'error',
1133
+ ],
1134
+ 'promise/no-return-in-finally': [
1135
+ 'warn',
1136
+ ],
1137
+ 'promise/valid-params': [
1138
+ 'warn',
1139
+ ],
1140
+ }"
1141
+ `;