@toptal/davinci-syntax 14.0.8-alpha-fx-qa-postinstall.18 → 14.0.8

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