@toptal/davinci-syntax 8.0.3 → 8.0.4-alpha-tph-1237-github-test-results.1302

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