@toptal/davinci-syntax 17.1.7-alpha-fix-wrong-data-structure-in-analytics-e998b099.7 → 17.1.7

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