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