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