@toptal/davinci-syntax 13.2.5-alpha-fx-2755-interactive-workflow-generation.4 → 14.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1151 @@
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
+ 'comma-dangle': [
388
+ 'off',
389
+ ],
390
+ '@typescript-eslint/comma-dangle': [
391
+ 'error',
392
+ {
393
+ arrays: 'always-multiline',
394
+ objects: 'always-multiline',
395
+ imports: 'always-multiline',
396
+ exports: 'always-multiline',
397
+ functions: 'never',
398
+ enums: 'never',
399
+ generics: 'ignore',
400
+ tuples: 'never',
401
+ },
402
+ ],
403
+ 'lines-around-comment': [
404
+ 0,
405
+ ],
406
+ 'max-len': [
407
+ 0,
408
+ ],
409
+ 'no-confusing-arrow': [
410
+ 0,
411
+ ],
412
+ 'no-mixed-operators': [
413
+ 0,
414
+ ],
415
+ 'no-tabs': [
416
+ 0,
417
+ ],
418
+ 'no-unexpected-multiline': [
419
+ 0,
420
+ ],
421
+ '@typescript-eslint/quotes': [
422
+ 0,
423
+ ],
424
+ 'babel/quotes': [
425
+ 0,
426
+ ],
427
+ 'vue/html-self-closing': [
428
+ 0,
429
+ ],
430
+ 'vue/max-len': [
431
+ 0,
432
+ ],
433
+ 'array-bracket-newline': [
434
+ 'off',
435
+ ],
436
+ 'array-bracket-spacing': [
437
+ 'off',
438
+ ],
439
+ 'array-element-newline': [
440
+ 'off',
441
+ ],
442
+ 'arrow-parens': [
443
+ 'off',
444
+ ],
445
+ 'arrow-spacing': [
446
+ 'off',
447
+ ],
448
+ 'block-spacing': [
449
+ 'off',
450
+ ],
451
+ 'brace-style': [
452
+ 'off',
453
+ ],
454
+ 'comma-spacing': [
455
+ 'off',
456
+ ],
457
+ 'comma-style': [
458
+ 'off',
459
+ ],
460
+ 'computed-property-spacing': [
461
+ 'off',
462
+ ],
463
+ 'dot-location': [
464
+ 'off',
465
+ ],
466
+ 'eol-last': [
467
+ 'off',
468
+ ],
469
+ 'function-call-argument-newline': [
470
+ 'off',
471
+ ],
472
+ 'function-paren-newline': [
473
+ 'off',
474
+ ],
475
+ 'generator-star': [
476
+ 'off',
477
+ ],
478
+ 'generator-star-spacing': [
479
+ 'off',
480
+ ],
481
+ 'implicit-arrow-linebreak': [
482
+ 'off',
483
+ ],
484
+ indent: [
485
+ 'off',
486
+ ],
487
+ 'jsx-quotes': [
488
+ 'off',
489
+ ],
490
+ 'key-spacing': [
491
+ 'off',
492
+ ],
493
+ 'keyword-spacing': [
494
+ 'off',
495
+ ],
496
+ 'linebreak-style': [
497
+ 'off',
498
+ ],
499
+ 'multiline-ternary': [
500
+ 'off',
501
+ ],
502
+ 'newline-per-chained-call': [
503
+ 'off',
504
+ ],
505
+ 'new-parens': [
506
+ 'off',
507
+ ],
508
+ 'no-arrow-condition': [
509
+ 'off',
510
+ ],
511
+ 'no-comma-dangle': [
512
+ 'off',
513
+ ],
514
+ 'no-extra-parens': [
515
+ 'off',
516
+ ],
517
+ 'no-extra-semi': [
518
+ 'off',
519
+ ],
520
+ 'no-floating-decimal': [
521
+ 'off',
522
+ ],
523
+ 'no-mixed-spaces-and-tabs': [
524
+ 'off',
525
+ ],
526
+ 'no-multi-spaces': [
527
+ 'off',
528
+ ],
529
+ 'no-multiple-empty-lines': [
530
+ 'off',
531
+ ],
532
+ 'no-reserved-keys': [
533
+ 'off',
534
+ ],
535
+ 'no-space-before-semi': [
536
+ 'off',
537
+ ],
538
+ 'no-trailing-spaces': [
539
+ 'off',
540
+ ],
541
+ 'no-whitespace-before-property': [
542
+ 'off',
543
+ ],
544
+ 'no-wrap-func': [
545
+ 'off',
546
+ ],
547
+ 'nonblock-statement-body-position': [
548
+ 'off',
549
+ ],
550
+ 'object-curly-newline': [
551
+ 'off',
552
+ ],
553
+ 'object-curly-spacing': [
554
+ 'off',
555
+ ],
556
+ 'object-property-newline': [
557
+ 'off',
558
+ ],
559
+ 'one-var-declaration-per-line': [
560
+ 'off',
561
+ ],
562
+ 'operator-linebreak': [
563
+ 'off',
564
+ ],
565
+ 'padded-blocks': [
566
+ 'off',
567
+ ],
568
+ 'quote-props': [
569
+ 'off',
570
+ ],
571
+ 'rest-spread-spacing': [
572
+ 'off',
573
+ ],
574
+ semi: [
575
+ 'off',
576
+ ],
577
+ 'semi-spacing': [
578
+ 'off',
579
+ ],
580
+ 'semi-style': [
581
+ 'off',
582
+ ],
583
+ 'space-after-function-name': [
584
+ 'off',
585
+ ],
586
+ 'space-after-keywords': [
587
+ 'off',
588
+ ],
589
+ 'space-before-blocks': [
590
+ 'off',
591
+ ],
592
+ 'space-before-function-parentheses': [
593
+ 'off',
594
+ ],
595
+ 'space-before-keywords': [
596
+ 'off',
597
+ ],
598
+ 'space-in-brackets': [
599
+ 'off',
600
+ ],
601
+ 'space-in-parens': [
602
+ 'off',
603
+ ],
604
+ 'space-infix-ops': [
605
+ 'off',
606
+ ],
607
+ 'space-return-throw-case': [
608
+ 'off',
609
+ ],
610
+ 'space-unary-ops': [
611
+ 'off',
612
+ ],
613
+ 'space-unary-word-ops': [
614
+ 'off',
615
+ ],
616
+ 'switch-colon-spacing': [
617
+ 'off',
618
+ ],
619
+ 'template-curly-spacing': [
620
+ 'off',
621
+ ],
622
+ 'template-tag-spacing': [
623
+ 'off',
624
+ ],
625
+ 'unicode-bom': [
626
+ 'off',
627
+ ],
628
+ 'wrap-iife': [
629
+ 'off',
630
+ ],
631
+ 'wrap-regex': [
632
+ 'off',
633
+ ],
634
+ 'yield-star-spacing': [
635
+ 'off',
636
+ ],
637
+ '@babel/object-curly-spacing': [
638
+ 'off',
639
+ ],
640
+ '@babel/semi': [
641
+ 'off',
642
+ ],
643
+ '@typescript-eslint/brace-style': [
644
+ 'off',
645
+ ],
646
+ '@typescript-eslint/comma-spacing': [
647
+ 'off',
648
+ ],
649
+ '@typescript-eslint/indent': [
650
+ 'off',
651
+ ],
652
+ '@typescript-eslint/keyword-spacing': [
653
+ 'off',
654
+ ],
655
+ '@typescript-eslint/no-extra-parens': [
656
+ 'off',
657
+ ],
658
+ '@typescript-eslint/no-extra-semi': [
659
+ 'off',
660
+ ],
661
+ '@typescript-eslint/object-curly-spacing': [
662
+ 'off',
663
+ ],
664
+ '@typescript-eslint/semi': [
665
+ 'off',
666
+ ],
667
+ '@typescript-eslint/space-before-blocks': [
668
+ 'off',
669
+ ],
670
+ '@typescript-eslint/space-before-function-paren': [
671
+ 'off',
672
+ ],
673
+ '@typescript-eslint/space-infix-ops': [
674
+ 'off',
675
+ ],
676
+ '@typescript-eslint/type-annotation-spacing': [
677
+ 'off',
678
+ ],
679
+ 'babel/object-curly-spacing': [
680
+ 'off',
681
+ ],
682
+ 'babel/semi': [
683
+ 'off',
684
+ ],
685
+ 'flowtype/boolean-style': [
686
+ 'off',
687
+ ],
688
+ 'flowtype/delimiter-dangle': [
689
+ 'off',
690
+ ],
691
+ 'flowtype/generic-spacing': [
692
+ 'off',
693
+ ],
694
+ 'flowtype/object-type-curly-spacing': [
695
+ 'off',
696
+ ],
697
+ 'flowtype/object-type-delimiter': [
698
+ 'off',
699
+ ],
700
+ 'flowtype/quotes': [
701
+ 'off',
702
+ ],
703
+ 'flowtype/semi': [
704
+ 'off',
705
+ ],
706
+ 'flowtype/space-after-type-colon': [
707
+ 'off',
708
+ ],
709
+ 'flowtype/space-before-generic-bracket': [
710
+ 'off',
711
+ ],
712
+ 'flowtype/space-before-type-colon': [
713
+ 'off',
714
+ ],
715
+ 'flowtype/union-intersection-spacing': [
716
+ 'off',
717
+ ],
718
+ 'react/jsx-child-element-spacing': [
719
+ 'off',
720
+ ],
721
+ 'react/jsx-closing-tag-location': [
722
+ 'off',
723
+ ],
724
+ 'react/jsx-curly-newline': [
725
+ 'off',
726
+ ],
727
+ 'react/jsx-curly-spacing': [
728
+ 'off',
729
+ ],
730
+ 'react/jsx-equals-spacing': [
731
+ 'off',
732
+ ],
733
+ 'react/jsx-first-prop-new-line': [
734
+ 'off',
735
+ ],
736
+ 'react/jsx-indent': [
737
+ 'off',
738
+ ],
739
+ 'react/jsx-indent-props': [
740
+ 'off',
741
+ ],
742
+ 'react/jsx-max-props-per-line': [
743
+ 'off',
744
+ ],
745
+ 'react/jsx-newline': [
746
+ 'off',
747
+ ],
748
+ 'react/jsx-one-expression-per-line': [
749
+ 'off',
750
+ ],
751
+ 'react/jsx-props-no-multi-spaces': [
752
+ 'off',
753
+ ],
754
+ 'react/jsx-tag-spacing': [
755
+ 'off',
756
+ ],
757
+ 'react/jsx-wrap-multilines': [
758
+ 'off',
759
+ ],
760
+ 'standard/array-bracket-even-spacing': [
761
+ 'off',
762
+ ],
763
+ 'standard/computed-property-even-spacing': [
764
+ 'off',
765
+ ],
766
+ 'standard/object-curly-even-spacing': [
767
+ 'off',
768
+ ],
769
+ 'unicorn/empty-brace-spaces': [
770
+ 'off',
771
+ ],
772
+ 'unicorn/no-nested-ternary': [
773
+ 'off',
774
+ ],
775
+ 'unicorn/number-literal-case': [
776
+ 'off',
777
+ ],
778
+ 'vue/array-bracket-newline': [
779
+ 'off',
780
+ ],
781
+ 'vue/array-bracket-spacing': [
782
+ 'off',
783
+ ],
784
+ 'vue/arrow-spacing': [
785
+ 'off',
786
+ ],
787
+ 'vue/block-spacing': [
788
+ 'off',
789
+ ],
790
+ 'vue/block-tag-newline': [
791
+ 'off',
792
+ ],
793
+ 'vue/brace-style': [
794
+ 'off',
795
+ ],
796
+ 'vue/comma-dangle': [
797
+ 'off',
798
+ ],
799
+ 'vue/comma-spacing': [
800
+ 'off',
801
+ ],
802
+ 'vue/comma-style': [
803
+ 'off',
804
+ ],
805
+ 'vue/dot-location': [
806
+ 'off',
807
+ ],
808
+ 'vue/func-call-spacing': [
809
+ 'off',
810
+ ],
811
+ 'vue/html-closing-bracket-newline': [
812
+ 'off',
813
+ ],
814
+ 'vue/html-closing-bracket-spacing': [
815
+ 'off',
816
+ ],
817
+ 'vue/html-end-tags': [
818
+ 'off',
819
+ ],
820
+ 'vue/html-indent': [
821
+ 'off',
822
+ ],
823
+ 'vue/html-quotes': [
824
+ 'off',
825
+ ],
826
+ 'vue/key-spacing': [
827
+ 'off',
828
+ ],
829
+ 'vue/keyword-spacing': [
830
+ 'off',
831
+ ],
832
+ 'vue/max-attributes-per-line': [
833
+ 'off',
834
+ ],
835
+ 'vue/multiline-html-element-content-newline': [
836
+ 'off',
837
+ ],
838
+ 'vue/mustache-interpolation-spacing': [
839
+ 'off',
840
+ ],
841
+ 'vue/no-extra-parens': [
842
+ 'off',
843
+ ],
844
+ 'vue/no-multi-spaces': [
845
+ 'off',
846
+ ],
847
+ 'vue/no-spaces-around-equal-signs-in-attribute': [
848
+ 'off',
849
+ ],
850
+ 'vue/object-curly-newline': [
851
+ 'off',
852
+ ],
853
+ 'vue/object-curly-spacing': [
854
+ 'off',
855
+ ],
856
+ 'vue/object-property-newline': [
857
+ 'off',
858
+ ],
859
+ 'vue/operator-linebreak': [
860
+ 'off',
861
+ ],
862
+ 'vue/quote-props': [
863
+ 'off',
864
+ ],
865
+ 'vue/script-indent': [
866
+ 'off',
867
+ ],
868
+ 'vue/singleline-html-element-content-newline': [
869
+ 'off',
870
+ ],
871
+ 'vue/space-in-parens': [
872
+ 'off',
873
+ ],
874
+ 'vue/space-infix-ops': [
875
+ 'off',
876
+ ],
877
+ 'vue/space-unary-ops': [
878
+ 'off',
879
+ ],
880
+ 'vue/template-curly-spacing': [
881
+ 'off',
882
+ ],
883
+ 'indent-legacy': [
884
+ 'off',
885
+ ],
886
+ 'no-spaced-func': [
887
+ 'off',
888
+ ],
889
+ 'react/jsx-space-before-closing': [
890
+ 'off',
891
+ ],
892
+ 'cypress/no-assigning-return-values': [
893
+ 'error',
894
+ ],
895
+ 'cypress/no-unnecessary-waiting': [
896
+ 'error',
897
+ ],
898
+ 'cypress/no-async-tests': [
899
+ 'error',
900
+ ],
901
+ '@typescript-eslint/adjacent-overload-signatures': [
902
+ 'error',
903
+ ],
904
+ 'no-array-constructor': [
905
+ 'off',
906
+ ],
907
+ '@typescript-eslint/no-array-constructor': [
908
+ 'error',
909
+ ],
910
+ 'no-empty-function': [
911
+ 'off',
912
+ ],
913
+ '@typescript-eslint/no-extra-non-null-assertion': [
914
+ 'error',
915
+ ],
916
+ '@typescript-eslint/no-inferrable-types': [
917
+ 'error',
918
+ ],
919
+ 'no-loss-of-precision': [
920
+ 'off',
921
+ ],
922
+ '@typescript-eslint/no-loss-of-precision': [
923
+ 'error',
924
+ ],
925
+ '@typescript-eslint/no-misused-new': [
926
+ 'error',
927
+ ],
928
+ '@typescript-eslint/no-namespace': [
929
+ 'error',
930
+ ],
931
+ '@typescript-eslint/no-this-alias': [
932
+ 'error',
933
+ ],
934
+ '@typescript-eslint/no-unnecessary-type-constraint': [
935
+ 'error',
936
+ ],
937
+ '@typescript-eslint/prefer-as-const': [
938
+ 'error',
939
+ ],
940
+ '@typescript-eslint/prefer-namespace-keyword': [
941
+ 'error',
942
+ ],
943
+ '@typescript-eslint/triple-slash-reference': [
944
+ 'error',
945
+ ],
946
+ 'constructor-super': [
947
+ 'error',
948
+ ],
949
+ 'for-direction': [
950
+ 'error',
951
+ ],
952
+ 'getter-return': [
953
+ 'error',
954
+ ],
955
+ 'no-async-promise-executor': [
956
+ 'error',
957
+ ],
958
+ 'no-case-declarations': [
959
+ 'error',
960
+ ],
961
+ 'no-class-assign': [
962
+ 'error',
963
+ ],
964
+ 'no-compare-neg-zero': [
965
+ 'error',
966
+ ],
967
+ 'no-cond-assign': [
968
+ 'error',
969
+ ],
970
+ 'no-const-assign': [
971
+ 'error',
972
+ ],
973
+ 'no-constant-condition': [
974
+ 'error',
975
+ ],
976
+ 'no-control-regex': [
977
+ 'error',
978
+ ],
979
+ 'no-debugger': [
980
+ 'error',
981
+ ],
982
+ 'no-delete-var': [
983
+ 'error',
984
+ ],
985
+ 'no-dupe-args': [
986
+ 'error',
987
+ ],
988
+ 'no-dupe-class-members': [
989
+ 'error',
990
+ ],
991
+ 'no-dupe-else-if': [
992
+ 'error',
993
+ ],
994
+ 'no-dupe-keys': [
995
+ 'error',
996
+ ],
997
+ 'no-duplicate-case': [
998
+ 'error',
999
+ ],
1000
+ 'no-empty': [
1001
+ 'error',
1002
+ ],
1003
+ 'no-empty-character-class': [
1004
+ 'error',
1005
+ ],
1006
+ 'no-empty-pattern': [
1007
+ 'error',
1008
+ ],
1009
+ 'no-ex-assign': [
1010
+ 'error',
1011
+ ],
1012
+ 'no-extra-boolean-cast': [
1013
+ 'error',
1014
+ ],
1015
+ 'no-fallthrough': [
1016
+ 'error',
1017
+ ],
1018
+ 'no-func-assign': [
1019
+ 'error',
1020
+ ],
1021
+ 'no-global-assign': [
1022
+ 'error',
1023
+ ],
1024
+ 'no-import-assign': [
1025
+ 'error',
1026
+ ],
1027
+ 'no-inner-declarations': [
1028
+ 'error',
1029
+ ],
1030
+ 'no-invalid-regexp': [
1031
+ 'error',
1032
+ ],
1033
+ 'no-irregular-whitespace': [
1034
+ 'error',
1035
+ ],
1036
+ 'no-misleading-character-class': [
1037
+ 'error',
1038
+ ],
1039
+ 'no-new-symbol': [
1040
+ 'error',
1041
+ ],
1042
+ 'no-nonoctal-decimal-escape': [
1043
+ 'error',
1044
+ ],
1045
+ 'no-obj-calls': [
1046
+ 'error',
1047
+ ],
1048
+ 'no-octal': [
1049
+ 'error',
1050
+ ],
1051
+ 'no-prototype-builtins': [
1052
+ 'error',
1053
+ ],
1054
+ 'no-redeclare': [
1055
+ 'error',
1056
+ ],
1057
+ 'no-regex-spaces': [
1058
+ 'error',
1059
+ ],
1060
+ 'no-self-assign': [
1061
+ 'error',
1062
+ ],
1063
+ 'no-setter-return': [
1064
+ 'error',
1065
+ ],
1066
+ 'no-shadow-restricted-names': [
1067
+ 'error',
1068
+ ],
1069
+ 'no-sparse-arrays': [
1070
+ 'error',
1071
+ ],
1072
+ 'no-this-before-super': [
1073
+ 'error',
1074
+ ],
1075
+ 'no-undef': [
1076
+ 'error',
1077
+ ],
1078
+ 'no-unreachable': [
1079
+ 'error',
1080
+ ],
1081
+ 'no-unsafe-finally': [
1082
+ 'error',
1083
+ ],
1084
+ 'no-unsafe-negation': [
1085
+ 'error',
1086
+ ],
1087
+ 'no-unsafe-optional-chaining': [
1088
+ 'error',
1089
+ ],
1090
+ 'no-unused-labels': [
1091
+ 'error',
1092
+ ],
1093
+ 'no-useless-backreference': [
1094
+ 'error',
1095
+ ],
1096
+ 'no-useless-catch': [
1097
+ 'error',
1098
+ ],
1099
+ 'no-useless-escape': [
1100
+ 'error',
1101
+ ],
1102
+ 'no-with': [
1103
+ 'error',
1104
+ ],
1105
+ 'require-yield': [
1106
+ 'error',
1107
+ ],
1108
+ 'use-isnan': [
1109
+ 'error',
1110
+ ],
1111
+ 'valid-typeof': [
1112
+ 'error',
1113
+ ],
1114
+ 'promise/always-return': [
1115
+ 'error',
1116
+ ],
1117
+ 'promise/no-return-wrap': [
1118
+ 'error',
1119
+ ],
1120
+ 'promise/param-names': [
1121
+ 'error',
1122
+ ],
1123
+ 'promise/catch-or-return': [
1124
+ 'error',
1125
+ ],
1126
+ 'promise/no-native': [
1127
+ 'off',
1128
+ ],
1129
+ 'promise/no-nesting': [
1130
+ 'warn',
1131
+ ],
1132
+ 'promise/no-promise-in-callback': [
1133
+ 'warn',
1134
+ ],
1135
+ 'promise/no-callback-in-promise': [
1136
+ 'warn',
1137
+ ],
1138
+ 'promise/avoid-new': [
1139
+ 'off',
1140
+ ],
1141
+ 'promise/no-new-statics': [
1142
+ 'error',
1143
+ ],
1144
+ 'promise/no-return-in-finally': [
1145
+ 'warn',
1146
+ ],
1147
+ 'promise/valid-params': [
1148
+ 'warn',
1149
+ ],
1150
+ }"
1151
+ `;