@remotion/eslint-config 4.0.0-webhook.27 → 4.1.0-alpha1
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.
- package/LICENSE.md +8 -8
- package/dist/auto-import-rules.d.ts +1 -0
- package/dist/auto-import-rules.js +2 -1
- package/dist/index.d.ts +1105 -309
- package/dist/index.js +20 -45
- package/dist/patch-eslint.d.ts +0 -0
- package/dist/patch-eslint.js +0 -0
- package/package.json +14 -16
package/dist/index.d.ts
CHANGED
|
@@ -55,23 +55,14 @@ declare const _default: {
|
|
|
55
55
|
Img: string;
|
|
56
56
|
IFrame: string;
|
|
57
57
|
Folder: string;
|
|
58
|
+
z: string;
|
|
58
59
|
styled: string;
|
|
59
60
|
};
|
|
60
61
|
})[];
|
|
61
|
-
"
|
|
62
|
-
"no-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
ignoreRestSiblings: boolean;
|
|
66
|
-
argsIgnorePattern: string;
|
|
67
|
-
caughtErrors: string;
|
|
68
|
-
caughtErrorsIgnorePattern: string;
|
|
69
|
-
})[];
|
|
70
|
-
"no-undef": string | (string | {
|
|
71
|
-
typeof: boolean;
|
|
72
|
-
})[];
|
|
73
|
-
"no-shadow"?: string | undefined;
|
|
74
|
-
"@typescript-eslint/no-var-requires"?: string | undefined;
|
|
62
|
+
"no-unused-vars": string;
|
|
63
|
+
"no-undef": string;
|
|
64
|
+
"no-shadow": string;
|
|
65
|
+
"@typescript-eslint/no-var-requires": string;
|
|
75
66
|
curly: number;
|
|
76
67
|
"lines-around-comment": number;
|
|
77
68
|
"max-len": number;
|
|
@@ -153,8 +144,6 @@ declare const _default: {
|
|
|
153
144
|
"wrap-iife": string;
|
|
154
145
|
"wrap-regex": string;
|
|
155
146
|
"yield-star-spacing": string;
|
|
156
|
-
"@babel/object-curly-spacing": string;
|
|
157
|
-
"@babel/semi": string;
|
|
158
147
|
"@typescript-eslint/brace-style": string;
|
|
159
148
|
"@typescript-eslint/comma-dangle": string;
|
|
160
149
|
"@typescript-eslint/comma-spacing": string;
|
|
@@ -169,19 +158,6 @@ declare const _default: {
|
|
|
169
158
|
"@typescript-eslint/space-before-function-paren": string;
|
|
170
159
|
"@typescript-eslint/space-infix-ops": string;
|
|
171
160
|
"@typescript-eslint/type-annotation-spacing": string;
|
|
172
|
-
"babel/object-curly-spacing": string;
|
|
173
|
-
"babel/semi": string;
|
|
174
|
-
"flowtype/boolean-style": string;
|
|
175
|
-
"flowtype/delimiter-dangle": string;
|
|
176
|
-
"flowtype/generic-spacing": string;
|
|
177
|
-
"flowtype/object-type-curly-spacing": string;
|
|
178
|
-
"flowtype/object-type-delimiter": string;
|
|
179
|
-
"flowtype/quotes": string;
|
|
180
|
-
"flowtype/semi": string;
|
|
181
|
-
"flowtype/space-after-type-colon": string;
|
|
182
|
-
"flowtype/space-before-generic-bracket": string;
|
|
183
|
-
"flowtype/space-before-type-colon": string;
|
|
184
|
-
"flowtype/union-intersection-spacing": string;
|
|
185
161
|
"react/jsx-child-element-spacing": string;
|
|
186
162
|
"react/jsx-closing-bracket-location": string;
|
|
187
163
|
"react/jsx-closing-tag-location": string;
|
|
@@ -406,10 +382,6 @@ declare const _default: {
|
|
|
406
382
|
})[];
|
|
407
383
|
"react/button-has-type": string;
|
|
408
384
|
"react/default-props-match-prop-types": string;
|
|
409
|
-
"react/function-component-definition": (string | {
|
|
410
|
-
namedComponents: string;
|
|
411
|
-
unnamedComponents: string;
|
|
412
|
-
})[];
|
|
413
385
|
"react/no-access-state-in-setstate": string;
|
|
414
386
|
"react/no-children-prop": string;
|
|
415
387
|
"react/no-danger": string;
|
|
@@ -426,8 +398,6 @@ declare const _default: {
|
|
|
426
398
|
noTemplateLiterals: boolean;
|
|
427
399
|
})[];
|
|
428
400
|
"react/no-this-in-sfc": string;
|
|
429
|
-
"react/no-unescaped-entities": string;
|
|
430
|
-
"react/no-unknown-property": string;
|
|
431
401
|
"react/no-unsafe": string;
|
|
432
402
|
"react/no-unused-prop-types": string;
|
|
433
403
|
"react/no-unused-state": string;
|
|
@@ -470,273 +440,1106 @@ declare const _default: {
|
|
|
470
440
|
"react/react-in-jsx-scope": string;
|
|
471
441
|
"react/jsx-key": string;
|
|
472
442
|
"react/jsx-no-target-blank": string;
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
443
|
+
} | {
|
|
444
|
+
"react/jsx-no-useless-fragment": string;
|
|
445
|
+
"react/no-array-index-key": string;
|
|
446
|
+
"10x/auto-import": (string | {
|
|
447
|
+
imports: {
|
|
448
|
+
useRef: string;
|
|
449
|
+
useEffect: string;
|
|
450
|
+
useState: string;
|
|
451
|
+
useCallback: string;
|
|
452
|
+
useMemo: string;
|
|
453
|
+
useReducer: string;
|
|
454
|
+
useCurrentFrame: string;
|
|
455
|
+
useVideoConfig: string;
|
|
456
|
+
spring: string;
|
|
457
|
+
measureSpring: string;
|
|
458
|
+
random: string;
|
|
459
|
+
interpolate: string;
|
|
460
|
+
interpolateColors: string;
|
|
461
|
+
Easing: string;
|
|
462
|
+
getInputProps: string;
|
|
463
|
+
continueRender: string;
|
|
464
|
+
delayRender: string;
|
|
465
|
+
AbsoluteFill: string;
|
|
466
|
+
Sequence: string;
|
|
467
|
+
Composition: string;
|
|
468
|
+
Audio: string;
|
|
469
|
+
Video: string;
|
|
470
|
+
OffthreadVideo: string;
|
|
471
|
+
Series: string;
|
|
472
|
+
Still: string;
|
|
473
|
+
Freeze: string;
|
|
474
|
+
Loop: string;
|
|
475
|
+
staticFile: string;
|
|
476
|
+
Config: string;
|
|
477
|
+
Img: string;
|
|
478
|
+
IFrame: string;
|
|
479
|
+
Folder: string;
|
|
480
|
+
z: string;
|
|
481
|
+
styled: string;
|
|
482
|
+
};
|
|
483
|
+
})[];
|
|
484
|
+
"no-undef": (string | {
|
|
485
|
+
typeof: boolean;
|
|
486
|
+
})[];
|
|
487
|
+
"no-unused-vars": (string | {
|
|
488
|
+
vars: string;
|
|
489
|
+
args: string;
|
|
490
|
+
ignoreRestSiblings: boolean;
|
|
491
|
+
argsIgnorePattern: string;
|
|
492
|
+
caughtErrors: string;
|
|
493
|
+
caughtErrorsIgnorePattern: string;
|
|
494
|
+
})[];
|
|
495
|
+
curly: number;
|
|
496
|
+
"lines-around-comment": number;
|
|
497
|
+
"max-len": number;
|
|
498
|
+
"no-confusing-arrow": number;
|
|
499
|
+
"no-mixed-operators": number;
|
|
500
|
+
"no-tabs": number;
|
|
501
|
+
"no-unexpected-multiline": number;
|
|
502
|
+
quotes: number;
|
|
503
|
+
"@typescript-eslint/quotes": number;
|
|
504
|
+
"babel/quotes": number;
|
|
505
|
+
"array-bracket-newline": string;
|
|
506
|
+
"array-bracket-spacing": string;
|
|
507
|
+
"array-element-newline": string;
|
|
508
|
+
"arrow-parens": string;
|
|
509
|
+
"arrow-spacing": string;
|
|
510
|
+
"block-spacing": string;
|
|
511
|
+
"brace-style": string;
|
|
512
|
+
"comma-dangle": string;
|
|
513
|
+
"comma-spacing": string;
|
|
514
|
+
"comma-style": string;
|
|
515
|
+
"computed-property-spacing": string;
|
|
516
|
+
"dot-location": string;
|
|
517
|
+
"eol-last": string;
|
|
518
|
+
"func-call-spacing": string;
|
|
519
|
+
"function-call-argument-newline": string;
|
|
520
|
+
"function-paren-newline": string;
|
|
521
|
+
"generator-star": string;
|
|
522
|
+
"generator-star-spacing": string;
|
|
523
|
+
"implicit-arrow-linebreak": string;
|
|
524
|
+
indent: string;
|
|
525
|
+
"jsx-quotes": string;
|
|
526
|
+
"key-spacing": string;
|
|
527
|
+
"keyword-spacing": string;
|
|
528
|
+
"linebreak-style": string;
|
|
529
|
+
"multiline-ternary": string;
|
|
530
|
+
"newline-per-chained-call": string;
|
|
531
|
+
"new-parens": string;
|
|
532
|
+
"no-arrow-condition": string;
|
|
533
|
+
"no-comma-dangle": string;
|
|
534
|
+
"no-extra-parens": string;
|
|
535
|
+
"no-extra-semi": string;
|
|
536
|
+
"no-floating-decimal": string;
|
|
537
|
+
"no-mixed-spaces-and-tabs": string;
|
|
538
|
+
"no-multi-spaces": string;
|
|
539
|
+
"no-multiple-empty-lines": string;
|
|
540
|
+
"no-reserved-keys": string;
|
|
541
|
+
"no-space-before-semi": string;
|
|
542
|
+
"no-trailing-spaces": string;
|
|
543
|
+
"no-whitespace-before-property": string;
|
|
544
|
+
"no-wrap-func": string;
|
|
545
|
+
"nonblock-statement-body-position": string;
|
|
546
|
+
"object-curly-newline": string;
|
|
547
|
+
"object-curly-spacing": string;
|
|
548
|
+
"object-property-newline": string;
|
|
549
|
+
"one-var-declaration-per-line": string;
|
|
550
|
+
"operator-linebreak": string;
|
|
551
|
+
"padded-blocks": string;
|
|
552
|
+
"quote-props": string;
|
|
553
|
+
"rest-spread-spacing": string;
|
|
554
|
+
semi: string;
|
|
555
|
+
"semi-spacing": string;
|
|
556
|
+
"semi-style": string;
|
|
557
|
+
"space-after-function-name": string;
|
|
558
|
+
"space-after-keywords": string;
|
|
559
|
+
"space-before-blocks": string;
|
|
560
|
+
"space-before-function-paren": string;
|
|
561
|
+
"space-before-function-parentheses": string;
|
|
562
|
+
"space-before-keywords": string;
|
|
563
|
+
"space-in-brackets": string;
|
|
564
|
+
"space-in-parens": string;
|
|
565
|
+
"space-infix-ops": string;
|
|
566
|
+
"space-return-throw-case": string;
|
|
567
|
+
"space-unary-ops": string;
|
|
568
|
+
"space-unary-word-ops": string;
|
|
569
|
+
"switch-colon-spacing": string;
|
|
570
|
+
"template-curly-spacing": string;
|
|
571
|
+
"template-tag-spacing": string;
|
|
572
|
+
"unicode-bom": string;
|
|
573
|
+
"wrap-iife": string;
|
|
574
|
+
"wrap-regex": string;
|
|
575
|
+
"yield-star-spacing": string;
|
|
576
|
+
"@typescript-eslint/brace-style": string;
|
|
577
|
+
"@typescript-eslint/comma-dangle": string;
|
|
578
|
+
"@typescript-eslint/comma-spacing": string;
|
|
579
|
+
"@typescript-eslint/func-call-spacing": string;
|
|
580
|
+
"@typescript-eslint/indent": string;
|
|
581
|
+
"@typescript-eslint/keyword-spacing": string;
|
|
582
|
+
"@typescript-eslint/member-delimiter-style": string;
|
|
583
|
+
"@typescript-eslint/no-extra-parens": string;
|
|
584
|
+
"@typescript-eslint/no-extra-semi": string;
|
|
585
|
+
"@typescript-eslint/object-curly-spacing": string;
|
|
586
|
+
"@typescript-eslint/semi": string;
|
|
587
|
+
"@typescript-eslint/space-before-function-paren": string;
|
|
588
|
+
"@typescript-eslint/space-infix-ops": string;
|
|
589
|
+
"@typescript-eslint/type-annotation-spacing": string;
|
|
590
|
+
"react/jsx-child-element-spacing": string;
|
|
591
|
+
"react/jsx-closing-bracket-location": string;
|
|
592
|
+
"react/jsx-closing-tag-location": string;
|
|
593
|
+
"react/jsx-curly-newline": string;
|
|
594
|
+
"react/jsx-curly-spacing": string;
|
|
595
|
+
"react/jsx-equals-spacing": string;
|
|
596
|
+
"react/jsx-first-prop-new-line": string;
|
|
597
|
+
"react/jsx-indent": string;
|
|
598
|
+
"react/jsx-indent-props": string;
|
|
599
|
+
"react/jsx-max-props-per-line": string;
|
|
600
|
+
"react/jsx-newline": string;
|
|
601
|
+
"react/jsx-one-expression-per-line": string;
|
|
602
|
+
"react/jsx-props-no-multi-spaces": string;
|
|
603
|
+
"react/jsx-tag-spacing": string;
|
|
604
|
+
"react/jsx-wrap-multilines": string;
|
|
605
|
+
"for-direction": string;
|
|
606
|
+
"getter-return": string;
|
|
607
|
+
"no-async-promise-executor": string;
|
|
608
|
+
"no-compare-neg-zero": string;
|
|
609
|
+
"no-cond-assign": string;
|
|
610
|
+
"no-constant-condition": string;
|
|
611
|
+
"no-control-regex": string;
|
|
612
|
+
"no-debugger": string;
|
|
613
|
+
"no-dupe-args": string;
|
|
614
|
+
"no-dupe-else-if": string;
|
|
615
|
+
"no-dupe-keys": string;
|
|
616
|
+
"no-duplicate-case": string;
|
|
617
|
+
"no-empty-character-class": string;
|
|
618
|
+
"no-empty": (string | {
|
|
619
|
+
allowEmptyCatch: boolean;
|
|
620
|
+
})[];
|
|
621
|
+
"no-ex-assign": string;
|
|
622
|
+
"no-extra-boolean-cast": string;
|
|
623
|
+
"no-func-assign": string;
|
|
624
|
+
"no-import-assign": string;
|
|
625
|
+
"no-inner-declarations": string;
|
|
626
|
+
"no-invalid-regexp": string;
|
|
627
|
+
"no-irregular-whitespace": string;
|
|
628
|
+
"no-loss-of-precision": string;
|
|
629
|
+
"no-misleading-character-class": string;
|
|
630
|
+
"no-obj-calls": string;
|
|
631
|
+
"no-promise-executor-return": string;
|
|
632
|
+
"no-prototype-builtins": string;
|
|
633
|
+
"no-regex-spaces": string;
|
|
634
|
+
"no-setter-return": string;
|
|
635
|
+
"no-sparse-arrays": string;
|
|
636
|
+
"no-template-curly-in-string": string;
|
|
637
|
+
"no-unreachable": string;
|
|
638
|
+
"no-unreachable-loop": string;
|
|
639
|
+
"no-unsafe-finally": string;
|
|
640
|
+
"no-unsafe-negation": string;
|
|
641
|
+
"no-unsafe-optional-chaining": (string | {
|
|
642
|
+
disallowArithmeticOperators: boolean;
|
|
643
|
+
})[];
|
|
644
|
+
"no-useless-backreference": string;
|
|
645
|
+
"use-isnan": string;
|
|
646
|
+
"valid-typeof": (string | {
|
|
647
|
+
requireStringLiterals: boolean;
|
|
648
|
+
})[];
|
|
649
|
+
"accessor-pairs": (string | {
|
|
650
|
+
enforceForClassMembers: boolean;
|
|
651
|
+
})[];
|
|
652
|
+
"array-callback-return": (string | {
|
|
653
|
+
allowImplicit: boolean;
|
|
654
|
+
})[];
|
|
655
|
+
"block-scoped-var": string;
|
|
656
|
+
complexity: string;
|
|
657
|
+
"default-case": string;
|
|
658
|
+
"default-case-last": string;
|
|
659
|
+
"default-param-last": string;
|
|
660
|
+
"dot-notation": string;
|
|
661
|
+
eqeqeq: string;
|
|
662
|
+
"grouped-accessor-pairs": string[];
|
|
663
|
+
"guard-for-in": string;
|
|
664
|
+
"no-alert": string;
|
|
665
|
+
"no-caller": string;
|
|
666
|
+
"no-case-declarations": string;
|
|
667
|
+
"no-constructor-return": string;
|
|
668
|
+
"no-else-return": (string | {
|
|
669
|
+
allowElseIf: boolean;
|
|
670
|
+
})[];
|
|
671
|
+
"no-empty-pattern": string;
|
|
672
|
+
"no-eq-null": string;
|
|
673
|
+
"no-eval": string;
|
|
674
|
+
"no-extend-native": string;
|
|
675
|
+
"no-extra-bind": string;
|
|
676
|
+
"no-extra-label": string;
|
|
677
|
+
"no-fallthrough": string;
|
|
678
|
+
"no-global-assign": string;
|
|
679
|
+
"no-implicit-coercion": string;
|
|
680
|
+
"no-implicit-globals": string;
|
|
681
|
+
"no-implied-eval": string;
|
|
682
|
+
"no-iterator": string;
|
|
683
|
+
"no-labels": string;
|
|
684
|
+
"no-lone-blocks": string;
|
|
685
|
+
"no-multi-str": string;
|
|
686
|
+
"no-new-func": string;
|
|
687
|
+
"no-new-wrappers": string;
|
|
688
|
+
"no-nonoctal-decimal-escape": string;
|
|
689
|
+
"no-new": string;
|
|
690
|
+
"no-octal-escape": string;
|
|
691
|
+
"no-octal": string;
|
|
692
|
+
"no-proto": string;
|
|
693
|
+
"no-redeclare": string;
|
|
694
|
+
"no-return-assign": string[];
|
|
695
|
+
"no-return-await": string;
|
|
696
|
+
"no-script-url": string;
|
|
697
|
+
"no-self-assign": (string | {
|
|
698
|
+
props: boolean;
|
|
699
|
+
})[];
|
|
700
|
+
"no-self-compare": string;
|
|
701
|
+
"no-sequences": string;
|
|
702
|
+
"no-throw-literal": string;
|
|
703
|
+
"no-unmodified-loop-condition": string;
|
|
704
|
+
"no-unused-labels": string;
|
|
705
|
+
"no-useless-call": string;
|
|
706
|
+
"no-useless-concat": string;
|
|
707
|
+
"no-useless-escape": string;
|
|
708
|
+
"no-useless-return": string;
|
|
709
|
+
"no-void": string;
|
|
710
|
+
"no-warning-comments": string;
|
|
711
|
+
"no-with": string;
|
|
712
|
+
"prefer-promise-reject-errors": (string | {
|
|
713
|
+
allowEmptyReject: boolean;
|
|
714
|
+
})[];
|
|
715
|
+
"prefer-regex-literals": string;
|
|
716
|
+
radix: string;
|
|
717
|
+
yoda: string;
|
|
718
|
+
"no-delete-var": string;
|
|
719
|
+
"no-label-var": string;
|
|
720
|
+
"no-restricted-globals": string[];
|
|
721
|
+
"no-shadow-restricted-names": string;
|
|
722
|
+
"no-undef-init": string;
|
|
723
|
+
"no-buffer-constructor": string;
|
|
724
|
+
"no-restricted-imports": string[];
|
|
725
|
+
camelcase: (string | {
|
|
726
|
+
properties: string;
|
|
727
|
+
})[];
|
|
728
|
+
"capitalized-comments": (string | {
|
|
729
|
+
ignorePattern: string;
|
|
730
|
+
ignoreInlineComments: boolean;
|
|
731
|
+
ignoreConsecutiveComments: boolean;
|
|
732
|
+
})[];
|
|
733
|
+
"func-name-matching": (string | {
|
|
734
|
+
considerPropertyDescriptor: boolean;
|
|
735
|
+
})[];
|
|
736
|
+
"func-names": string[];
|
|
737
|
+
"lines-between-class-members": (string | {
|
|
738
|
+
exceptAfterSingleLine: boolean;
|
|
739
|
+
})[];
|
|
740
|
+
"max-depth": string;
|
|
741
|
+
"max-nested-callbacks": (string | number)[];
|
|
742
|
+
"max-params": (string | {
|
|
743
|
+
max: number;
|
|
744
|
+
})[];
|
|
745
|
+
"max-statements-per-line": string;
|
|
746
|
+
"no-array-constructor": string;
|
|
747
|
+
"no-lonely-if": string;
|
|
748
|
+
"no-multi-assign": string;
|
|
749
|
+
"no-negated-condition": string;
|
|
750
|
+
"no-new-object": string;
|
|
751
|
+
"no-restricted-syntax": string[];
|
|
752
|
+
"no-unneeded-ternary": string;
|
|
753
|
+
"one-var": string[];
|
|
754
|
+
"operator-assignment": string[];
|
|
755
|
+
"padding-line-between-statements": string;
|
|
756
|
+
"prefer-exponentiation-operator": string;
|
|
757
|
+
"spaced-comment": (string | {
|
|
758
|
+
line: {
|
|
759
|
+
exceptions: string[];
|
|
760
|
+
markers: string[];
|
|
761
|
+
};
|
|
762
|
+
block: {
|
|
763
|
+
exceptions: string[];
|
|
764
|
+
markers: string[];
|
|
765
|
+
balanced: boolean;
|
|
766
|
+
};
|
|
767
|
+
})[];
|
|
768
|
+
"constructor-super": string;
|
|
769
|
+
"no-class-assign": string;
|
|
770
|
+
"no-const-assign": string;
|
|
771
|
+
"no-dupe-class-members": string;
|
|
772
|
+
"no-new-symbol": string;
|
|
773
|
+
"no-this-before-super": string;
|
|
774
|
+
"no-useless-computed-key": (string | {
|
|
775
|
+
enforceForClassMembers: boolean;
|
|
776
|
+
})[];
|
|
777
|
+
"no-useless-constructor": string;
|
|
778
|
+
"no-useless-rename": string;
|
|
779
|
+
"require-yield": string;
|
|
780
|
+
"symbol-description": string;
|
|
781
|
+
"no-var": string;
|
|
782
|
+
"object-shorthand": string[];
|
|
783
|
+
"prefer-arrow-callback": (string | {
|
|
784
|
+
allowNamedFunctions: boolean;
|
|
785
|
+
})[];
|
|
786
|
+
"prefer-const": (string | {
|
|
787
|
+
destructuring: string;
|
|
788
|
+
})[];
|
|
789
|
+
"prefer-numeric-literals": string;
|
|
790
|
+
"prefer-rest-params": string;
|
|
791
|
+
"prefer-spread": string;
|
|
792
|
+
"prefer-object-spread": string;
|
|
793
|
+
"prefer-destructuring": (string | {
|
|
794
|
+
VariableDeclarator: {
|
|
795
|
+
array: boolean;
|
|
796
|
+
object: boolean;
|
|
797
|
+
};
|
|
798
|
+
AssignmentExpression: {
|
|
799
|
+
array: boolean;
|
|
800
|
+
object: boolean;
|
|
801
|
+
};
|
|
802
|
+
enforceForRenamedProperties?: undefined;
|
|
803
|
+
} | {
|
|
804
|
+
enforceForRenamedProperties: boolean;
|
|
805
|
+
VariableDeclarator?: undefined;
|
|
806
|
+
AssignmentExpression?: undefined;
|
|
807
|
+
})[];
|
|
808
|
+
"no-useless-catch": string;
|
|
809
|
+
"react/boolean-prop-naming": (string | {
|
|
810
|
+
validateNested: boolean;
|
|
811
|
+
})[];
|
|
812
|
+
"react/button-has-type": string;
|
|
813
|
+
"react/default-props-match-prop-types": string;
|
|
814
|
+
"react/no-access-state-in-setstate": string;
|
|
815
|
+
"react/no-children-prop": string;
|
|
816
|
+
"react/no-danger": string;
|
|
817
|
+
"react/no-danger-with-children": string;
|
|
818
|
+
"react/no-deprecated": string;
|
|
819
|
+
"react/no-did-update-set-state": string;
|
|
820
|
+
"react/no-direct-mutation-state": string;
|
|
821
|
+
"react/no-find-dom-node": string;
|
|
822
|
+
"react/no-is-mounted": string;
|
|
823
|
+
"react/no-redundant-should-component-update": string;
|
|
824
|
+
"react/no-render-return-value": string;
|
|
825
|
+
"react/no-typos": string;
|
|
826
|
+
"react/no-string-refs": (string | {
|
|
827
|
+
noTemplateLiterals: boolean;
|
|
828
|
+
})[];
|
|
829
|
+
"react/no-this-in-sfc": string;
|
|
830
|
+
"react/no-unsafe": string;
|
|
831
|
+
"react/no-unused-prop-types": string;
|
|
832
|
+
"react/no-unused-state": string;
|
|
833
|
+
"react/prefer-read-only-props": string;
|
|
834
|
+
"react/require-default-props": (string | {
|
|
835
|
+
forbidDefaultForRequired: boolean;
|
|
836
|
+
ignoreFunctionalComponents: boolean;
|
|
837
|
+
})[];
|
|
838
|
+
"react/self-closing-comp": string;
|
|
839
|
+
"react/state-in-constructor": string[];
|
|
840
|
+
"react/static-property-placement": string;
|
|
841
|
+
"react/style-prop-object": string;
|
|
842
|
+
"react/void-dom-elements-no-children": string;
|
|
843
|
+
"react/jsx-boolean-value": string;
|
|
844
|
+
"react/jsx-no-bind": (string | {
|
|
845
|
+
allowArrowFunctions: boolean;
|
|
846
|
+
})[];
|
|
847
|
+
"react/jsx-no-comment-textnodes": string;
|
|
848
|
+
"react/jsx-no-duplicate-props": (string | {
|
|
849
|
+
ignoreCase: boolean;
|
|
850
|
+
})[];
|
|
851
|
+
"react/jsx-no-script-url": string;
|
|
852
|
+
"react/jsx-no-undef": string;
|
|
853
|
+
"react/jsx-curly-brace-presence": string[];
|
|
854
|
+
"react/jsx-fragments": string[];
|
|
855
|
+
"react/jsx-pascal-case": string;
|
|
856
|
+
"react/jsx-sort-props": (string | {
|
|
857
|
+
callbacksLast: boolean;
|
|
858
|
+
shorthandFirst: boolean;
|
|
859
|
+
noSortAlphabetically: boolean;
|
|
860
|
+
reservedFirst: boolean;
|
|
861
|
+
})[];
|
|
862
|
+
"react/jsx-uses-react": string;
|
|
863
|
+
"react/jsx-uses-vars": string;
|
|
864
|
+
"react-hooks/rules-of-hooks": string;
|
|
865
|
+
"react-hooks/exhaustive-deps": string;
|
|
866
|
+
"react/jsx-no-constructed-context-values": string;
|
|
867
|
+
"no-console": string;
|
|
868
|
+
"10x/react-in-scope": string;
|
|
869
|
+
"react/react-in-jsx-scope": string;
|
|
870
|
+
"react/jsx-key": string;
|
|
871
|
+
"react/jsx-no-target-blank": string;
|
|
872
|
+
};
|
|
873
|
+
}[];
|
|
874
|
+
rules: {
|
|
875
|
+
"react/jsx-no-useless-fragment": string;
|
|
876
|
+
"react/no-array-index-key": string;
|
|
877
|
+
"10x/auto-import": (string | {
|
|
878
|
+
imports: {
|
|
879
|
+
useRef: string;
|
|
880
|
+
useEffect: string;
|
|
881
|
+
useState: string;
|
|
882
|
+
useCallback: string;
|
|
883
|
+
useMemo: string;
|
|
884
|
+
useReducer: string;
|
|
885
|
+
useCurrentFrame: string;
|
|
886
|
+
useVideoConfig: string;
|
|
887
|
+
spring: string;
|
|
888
|
+
measureSpring: string;
|
|
889
|
+
random: string;
|
|
890
|
+
interpolate: string;
|
|
891
|
+
interpolateColors: string;
|
|
892
|
+
Easing: string;
|
|
893
|
+
getInputProps: string;
|
|
894
|
+
continueRender: string;
|
|
895
|
+
delayRender: string;
|
|
896
|
+
AbsoluteFill: string;
|
|
897
|
+
Sequence: string;
|
|
898
|
+
Composition: string;
|
|
899
|
+
Audio: string;
|
|
900
|
+
Video: string;
|
|
901
|
+
OffthreadVideo: string;
|
|
902
|
+
Series: string;
|
|
903
|
+
Still: string;
|
|
904
|
+
Freeze: string;
|
|
905
|
+
Loop: string;
|
|
906
|
+
staticFile: string;
|
|
907
|
+
Config: string;
|
|
908
|
+
Img: string;
|
|
909
|
+
IFrame: string;
|
|
910
|
+
Folder: string;
|
|
911
|
+
z: string;
|
|
912
|
+
styled: string;
|
|
913
|
+
};
|
|
914
|
+
})[];
|
|
915
|
+
"no-unused-vars": string;
|
|
916
|
+
"no-undef": string;
|
|
917
|
+
"no-shadow": string;
|
|
918
|
+
"@typescript-eslint/no-var-requires": string;
|
|
919
|
+
curly: number;
|
|
920
|
+
"lines-around-comment": number;
|
|
921
|
+
"max-len": number;
|
|
922
|
+
"no-confusing-arrow": number;
|
|
923
|
+
"no-mixed-operators": number;
|
|
924
|
+
"no-tabs": number;
|
|
925
|
+
"no-unexpected-multiline": number;
|
|
926
|
+
quotes: number;
|
|
927
|
+
"@typescript-eslint/quotes": number;
|
|
928
|
+
"babel/quotes": number;
|
|
929
|
+
"array-bracket-newline": string;
|
|
930
|
+
"array-bracket-spacing": string;
|
|
931
|
+
"array-element-newline": string;
|
|
932
|
+
"arrow-parens": string;
|
|
933
|
+
"arrow-spacing": string;
|
|
934
|
+
"block-spacing": string;
|
|
935
|
+
"brace-style": string;
|
|
936
|
+
"comma-dangle": string;
|
|
937
|
+
"comma-spacing": string;
|
|
938
|
+
"comma-style": string;
|
|
939
|
+
"computed-property-spacing": string;
|
|
940
|
+
"dot-location": string;
|
|
941
|
+
"eol-last": string;
|
|
942
|
+
"func-call-spacing": string;
|
|
943
|
+
"function-call-argument-newline": string;
|
|
944
|
+
"function-paren-newline": string;
|
|
945
|
+
"generator-star": string;
|
|
946
|
+
"generator-star-spacing": string;
|
|
947
|
+
"implicit-arrow-linebreak": string;
|
|
948
|
+
indent: string;
|
|
949
|
+
"jsx-quotes": string;
|
|
950
|
+
"key-spacing": string;
|
|
951
|
+
"keyword-spacing": string;
|
|
952
|
+
"linebreak-style": string;
|
|
953
|
+
"multiline-ternary": string;
|
|
954
|
+
"newline-per-chained-call": string;
|
|
955
|
+
"new-parens": string;
|
|
956
|
+
"no-arrow-condition": string;
|
|
957
|
+
"no-comma-dangle": string;
|
|
958
|
+
"no-extra-parens": string;
|
|
959
|
+
"no-extra-semi": string;
|
|
960
|
+
"no-floating-decimal": string;
|
|
961
|
+
"no-mixed-spaces-and-tabs": string;
|
|
962
|
+
"no-multi-spaces": string;
|
|
963
|
+
"no-multiple-empty-lines": string;
|
|
964
|
+
"no-reserved-keys": string;
|
|
965
|
+
"no-space-before-semi": string;
|
|
966
|
+
"no-trailing-spaces": string;
|
|
967
|
+
"no-whitespace-before-property": string;
|
|
968
|
+
"no-wrap-func": string;
|
|
969
|
+
"nonblock-statement-body-position": string;
|
|
970
|
+
"object-curly-newline": string;
|
|
971
|
+
"object-curly-spacing": string;
|
|
972
|
+
"object-property-newline": string;
|
|
973
|
+
"one-var-declaration-per-line": string;
|
|
974
|
+
"operator-linebreak": string;
|
|
975
|
+
"padded-blocks": string;
|
|
976
|
+
"quote-props": string;
|
|
977
|
+
"rest-spread-spacing": string;
|
|
978
|
+
semi: string;
|
|
979
|
+
"semi-spacing": string;
|
|
980
|
+
"semi-style": string;
|
|
981
|
+
"space-after-function-name": string;
|
|
982
|
+
"space-after-keywords": string;
|
|
983
|
+
"space-before-blocks": string;
|
|
984
|
+
"space-before-function-paren": string;
|
|
985
|
+
"space-before-function-parentheses": string;
|
|
986
|
+
"space-before-keywords": string;
|
|
987
|
+
"space-in-brackets": string;
|
|
988
|
+
"space-in-parens": string;
|
|
989
|
+
"space-infix-ops": string;
|
|
990
|
+
"space-return-throw-case": string;
|
|
991
|
+
"space-unary-ops": string;
|
|
992
|
+
"space-unary-word-ops": string;
|
|
993
|
+
"switch-colon-spacing": string;
|
|
994
|
+
"template-curly-spacing": string;
|
|
995
|
+
"template-tag-spacing": string;
|
|
996
|
+
"unicode-bom": string;
|
|
997
|
+
"wrap-iife": string;
|
|
998
|
+
"wrap-regex": string;
|
|
999
|
+
"yield-star-spacing": string;
|
|
1000
|
+
"@typescript-eslint/brace-style": string;
|
|
1001
|
+
"@typescript-eslint/comma-dangle": string;
|
|
1002
|
+
"@typescript-eslint/comma-spacing": string;
|
|
1003
|
+
"@typescript-eslint/func-call-spacing": string;
|
|
1004
|
+
"@typescript-eslint/indent": string;
|
|
1005
|
+
"@typescript-eslint/keyword-spacing": string;
|
|
1006
|
+
"@typescript-eslint/member-delimiter-style": string;
|
|
1007
|
+
"@typescript-eslint/no-extra-parens": string;
|
|
1008
|
+
"@typescript-eslint/no-extra-semi": string;
|
|
1009
|
+
"@typescript-eslint/object-curly-spacing": string;
|
|
1010
|
+
"@typescript-eslint/semi": string;
|
|
1011
|
+
"@typescript-eslint/space-before-function-paren": string;
|
|
1012
|
+
"@typescript-eslint/space-infix-ops": string;
|
|
1013
|
+
"@typescript-eslint/type-annotation-spacing": string;
|
|
1014
|
+
"react/jsx-child-element-spacing": string;
|
|
1015
|
+
"react/jsx-closing-bracket-location": string;
|
|
1016
|
+
"react/jsx-closing-tag-location": string;
|
|
1017
|
+
"react/jsx-curly-newline": string;
|
|
1018
|
+
"react/jsx-curly-spacing": string;
|
|
1019
|
+
"react/jsx-equals-spacing": string;
|
|
1020
|
+
"react/jsx-first-prop-new-line": string;
|
|
1021
|
+
"react/jsx-indent": string;
|
|
1022
|
+
"react/jsx-indent-props": string;
|
|
1023
|
+
"react/jsx-max-props-per-line": string;
|
|
1024
|
+
"react/jsx-newline": string;
|
|
1025
|
+
"react/jsx-one-expression-per-line": string;
|
|
1026
|
+
"react/jsx-props-no-multi-spaces": string;
|
|
1027
|
+
"react/jsx-tag-spacing": string;
|
|
1028
|
+
"react/jsx-wrap-multilines": string;
|
|
1029
|
+
"for-direction": string;
|
|
1030
|
+
"getter-return": string;
|
|
1031
|
+
"no-async-promise-executor": string;
|
|
1032
|
+
"no-compare-neg-zero": string;
|
|
1033
|
+
"no-cond-assign": string;
|
|
1034
|
+
"no-constant-condition": string;
|
|
1035
|
+
"no-control-regex": string;
|
|
1036
|
+
"no-debugger": string;
|
|
1037
|
+
"no-dupe-args": string;
|
|
1038
|
+
"no-dupe-else-if": string;
|
|
1039
|
+
"no-dupe-keys": string;
|
|
1040
|
+
"no-duplicate-case": string;
|
|
1041
|
+
"no-empty-character-class": string;
|
|
1042
|
+
"no-empty": (string | {
|
|
1043
|
+
allowEmptyCatch: boolean;
|
|
1044
|
+
})[];
|
|
1045
|
+
"no-ex-assign": string;
|
|
1046
|
+
"no-extra-boolean-cast": string;
|
|
1047
|
+
"no-func-assign": string;
|
|
1048
|
+
"no-import-assign": string;
|
|
1049
|
+
"no-inner-declarations": string;
|
|
1050
|
+
"no-invalid-regexp": string;
|
|
1051
|
+
"no-irregular-whitespace": string;
|
|
1052
|
+
"no-loss-of-precision": string;
|
|
1053
|
+
"no-misleading-character-class": string;
|
|
1054
|
+
"no-obj-calls": string;
|
|
1055
|
+
"no-promise-executor-return": string;
|
|
1056
|
+
"no-prototype-builtins": string;
|
|
1057
|
+
"no-regex-spaces": string;
|
|
1058
|
+
"no-setter-return": string;
|
|
1059
|
+
"no-sparse-arrays": string;
|
|
1060
|
+
"no-template-curly-in-string": string;
|
|
1061
|
+
"no-unreachable": string;
|
|
1062
|
+
"no-unreachable-loop": string;
|
|
1063
|
+
"no-unsafe-finally": string;
|
|
1064
|
+
"no-unsafe-negation": string;
|
|
1065
|
+
"no-unsafe-optional-chaining": (string | {
|
|
1066
|
+
disallowArithmeticOperators: boolean;
|
|
1067
|
+
})[];
|
|
1068
|
+
"no-useless-backreference": string;
|
|
1069
|
+
"use-isnan": string;
|
|
1070
|
+
"valid-typeof": (string | {
|
|
1071
|
+
requireStringLiterals: boolean;
|
|
1072
|
+
})[];
|
|
1073
|
+
"accessor-pairs": (string | {
|
|
1074
|
+
enforceForClassMembers: boolean;
|
|
1075
|
+
})[];
|
|
1076
|
+
"array-callback-return": (string | {
|
|
1077
|
+
allowImplicit: boolean;
|
|
1078
|
+
})[];
|
|
1079
|
+
"block-scoped-var": string;
|
|
1080
|
+
complexity: string;
|
|
1081
|
+
"default-case": string;
|
|
1082
|
+
"default-case-last": string;
|
|
1083
|
+
"default-param-last": string;
|
|
1084
|
+
"dot-notation": string;
|
|
1085
|
+
eqeqeq: string;
|
|
1086
|
+
"grouped-accessor-pairs": string[];
|
|
1087
|
+
"guard-for-in": string;
|
|
1088
|
+
"no-alert": string;
|
|
1089
|
+
"no-caller": string;
|
|
1090
|
+
"no-case-declarations": string;
|
|
1091
|
+
"no-constructor-return": string;
|
|
1092
|
+
"no-else-return": (string | {
|
|
1093
|
+
allowElseIf: boolean;
|
|
1094
|
+
})[];
|
|
1095
|
+
"no-empty-pattern": string;
|
|
1096
|
+
"no-eq-null": string;
|
|
1097
|
+
"no-eval": string;
|
|
1098
|
+
"no-extend-native": string;
|
|
1099
|
+
"no-extra-bind": string;
|
|
1100
|
+
"no-extra-label": string;
|
|
1101
|
+
"no-fallthrough": string;
|
|
1102
|
+
"no-global-assign": string;
|
|
1103
|
+
"no-implicit-coercion": string;
|
|
1104
|
+
"no-implicit-globals": string;
|
|
1105
|
+
"no-implied-eval": string;
|
|
1106
|
+
"no-iterator": string;
|
|
1107
|
+
"no-labels": string;
|
|
1108
|
+
"no-lone-blocks": string;
|
|
1109
|
+
"no-multi-str": string;
|
|
1110
|
+
"no-new-func": string;
|
|
1111
|
+
"no-new-wrappers": string;
|
|
1112
|
+
"no-nonoctal-decimal-escape": string;
|
|
1113
|
+
"no-new": string;
|
|
1114
|
+
"no-octal-escape": string;
|
|
1115
|
+
"no-octal": string;
|
|
1116
|
+
"no-proto": string;
|
|
1117
|
+
"no-redeclare": string;
|
|
1118
|
+
"no-return-assign": string[];
|
|
1119
|
+
"no-return-await": string;
|
|
1120
|
+
"no-script-url": string;
|
|
1121
|
+
"no-self-assign": (string | {
|
|
1122
|
+
props: boolean;
|
|
1123
|
+
})[];
|
|
1124
|
+
"no-self-compare": string;
|
|
1125
|
+
"no-sequences": string;
|
|
1126
|
+
"no-throw-literal": string;
|
|
1127
|
+
"no-unmodified-loop-condition": string;
|
|
1128
|
+
"no-unused-labels": string;
|
|
1129
|
+
"no-useless-call": string;
|
|
1130
|
+
"no-useless-concat": string;
|
|
1131
|
+
"no-useless-escape": string;
|
|
1132
|
+
"no-useless-return": string;
|
|
1133
|
+
"no-void": string;
|
|
1134
|
+
"no-warning-comments": string;
|
|
1135
|
+
"no-with": string;
|
|
1136
|
+
"prefer-promise-reject-errors": (string | {
|
|
1137
|
+
allowEmptyReject: boolean;
|
|
1138
|
+
})[];
|
|
1139
|
+
"prefer-regex-literals": string;
|
|
1140
|
+
radix: string;
|
|
1141
|
+
yoda: string;
|
|
1142
|
+
"no-delete-var": string;
|
|
1143
|
+
"no-label-var": string;
|
|
1144
|
+
"no-restricted-globals": string[];
|
|
1145
|
+
"no-shadow-restricted-names": string;
|
|
1146
|
+
"no-undef-init": string;
|
|
1147
|
+
"no-buffer-constructor": string;
|
|
1148
|
+
"no-restricted-imports": string[];
|
|
1149
|
+
camelcase: (string | {
|
|
1150
|
+
properties: string;
|
|
1151
|
+
})[];
|
|
1152
|
+
"capitalized-comments": (string | {
|
|
1153
|
+
ignorePattern: string;
|
|
1154
|
+
ignoreInlineComments: boolean;
|
|
1155
|
+
ignoreConsecutiveComments: boolean;
|
|
1156
|
+
})[];
|
|
1157
|
+
"func-name-matching": (string | {
|
|
1158
|
+
considerPropertyDescriptor: boolean;
|
|
1159
|
+
})[];
|
|
1160
|
+
"func-names": string[];
|
|
1161
|
+
"lines-between-class-members": (string | {
|
|
1162
|
+
exceptAfterSingleLine: boolean;
|
|
1163
|
+
})[];
|
|
1164
|
+
"max-depth": string;
|
|
1165
|
+
"max-nested-callbacks": (string | number)[];
|
|
1166
|
+
"max-params": (string | {
|
|
1167
|
+
max: number;
|
|
1168
|
+
})[];
|
|
1169
|
+
"max-statements-per-line": string;
|
|
1170
|
+
"no-array-constructor": string;
|
|
1171
|
+
"no-lonely-if": string;
|
|
1172
|
+
"no-multi-assign": string;
|
|
1173
|
+
"no-negated-condition": string;
|
|
1174
|
+
"no-new-object": string;
|
|
1175
|
+
"no-restricted-syntax": string[];
|
|
1176
|
+
"no-unneeded-ternary": string;
|
|
1177
|
+
"one-var": string[];
|
|
1178
|
+
"operator-assignment": string[];
|
|
1179
|
+
"padding-line-between-statements": string;
|
|
1180
|
+
"prefer-exponentiation-operator": string;
|
|
1181
|
+
"spaced-comment": (string | {
|
|
1182
|
+
line: {
|
|
1183
|
+
exceptions: string[];
|
|
1184
|
+
markers: string[];
|
|
1185
|
+
};
|
|
1186
|
+
block: {
|
|
1187
|
+
exceptions: string[];
|
|
1188
|
+
markers: string[];
|
|
1189
|
+
balanced: boolean;
|
|
1190
|
+
};
|
|
1191
|
+
})[];
|
|
1192
|
+
"constructor-super": string;
|
|
1193
|
+
"no-class-assign": string;
|
|
1194
|
+
"no-const-assign": string;
|
|
1195
|
+
"no-dupe-class-members": string;
|
|
1196
|
+
"no-new-symbol": string;
|
|
1197
|
+
"no-this-before-super": string;
|
|
1198
|
+
"no-useless-computed-key": (string | {
|
|
1199
|
+
enforceForClassMembers: boolean;
|
|
1200
|
+
})[];
|
|
1201
|
+
"no-useless-constructor": string;
|
|
1202
|
+
"no-useless-rename": string;
|
|
1203
|
+
"require-yield": string;
|
|
1204
|
+
"symbol-description": string;
|
|
1205
|
+
"no-var": string;
|
|
1206
|
+
"object-shorthand": string[];
|
|
1207
|
+
"prefer-arrow-callback": (string | {
|
|
1208
|
+
allowNamedFunctions: boolean;
|
|
1209
|
+
})[];
|
|
1210
|
+
"prefer-const": (string | {
|
|
1211
|
+
destructuring: string;
|
|
1212
|
+
})[];
|
|
1213
|
+
"prefer-numeric-literals": string;
|
|
1214
|
+
"prefer-rest-params": string;
|
|
1215
|
+
"prefer-spread": string;
|
|
1216
|
+
"prefer-object-spread": string;
|
|
1217
|
+
"prefer-destructuring": (string | {
|
|
1218
|
+
VariableDeclarator: {
|
|
1219
|
+
array: boolean;
|
|
1220
|
+
object: boolean;
|
|
1221
|
+
};
|
|
1222
|
+
AssignmentExpression: {
|
|
1223
|
+
array: boolean;
|
|
1224
|
+
object: boolean;
|
|
1225
|
+
};
|
|
1226
|
+
enforceForRenamedProperties?: undefined;
|
|
1227
|
+
} | {
|
|
1228
|
+
enforceForRenamedProperties: boolean;
|
|
1229
|
+
VariableDeclarator?: undefined;
|
|
1230
|
+
AssignmentExpression?: undefined;
|
|
1231
|
+
})[];
|
|
1232
|
+
"no-useless-catch": string;
|
|
1233
|
+
"react/boolean-prop-naming": (string | {
|
|
1234
|
+
validateNested: boolean;
|
|
1235
|
+
})[];
|
|
1236
|
+
"react/button-has-type": string;
|
|
1237
|
+
"react/default-props-match-prop-types": string;
|
|
1238
|
+
"react/no-access-state-in-setstate": string;
|
|
1239
|
+
"react/no-children-prop": string;
|
|
1240
|
+
"react/no-danger": string;
|
|
1241
|
+
"react/no-danger-with-children": string;
|
|
1242
|
+
"react/no-deprecated": string;
|
|
1243
|
+
"react/no-did-update-set-state": string;
|
|
1244
|
+
"react/no-direct-mutation-state": string;
|
|
1245
|
+
"react/no-find-dom-node": string;
|
|
1246
|
+
"react/no-is-mounted": string;
|
|
1247
|
+
"react/no-redundant-should-component-update": string;
|
|
1248
|
+
"react/no-render-return-value": string;
|
|
1249
|
+
"react/no-typos": string;
|
|
1250
|
+
"react/no-string-refs": (string | {
|
|
1251
|
+
noTemplateLiterals: boolean;
|
|
1252
|
+
})[];
|
|
1253
|
+
"react/no-this-in-sfc": string;
|
|
1254
|
+
"react/no-unsafe": string;
|
|
1255
|
+
"react/no-unused-prop-types": string;
|
|
1256
|
+
"react/no-unused-state": string;
|
|
1257
|
+
"react/prefer-read-only-props": string;
|
|
1258
|
+
"react/require-default-props": (string | {
|
|
1259
|
+
forbidDefaultForRequired: boolean;
|
|
1260
|
+
ignoreFunctionalComponents: boolean;
|
|
1261
|
+
})[];
|
|
1262
|
+
"react/self-closing-comp": string;
|
|
1263
|
+
"react/state-in-constructor": string[];
|
|
1264
|
+
"react/static-property-placement": string;
|
|
1265
|
+
"react/style-prop-object": string;
|
|
1266
|
+
"react/void-dom-elements-no-children": string;
|
|
1267
|
+
"react/jsx-boolean-value": string;
|
|
1268
|
+
"react/jsx-no-bind": (string | {
|
|
1269
|
+
allowArrowFunctions: boolean;
|
|
1270
|
+
})[];
|
|
1271
|
+
"react/jsx-no-comment-textnodes": string;
|
|
1272
|
+
"react/jsx-no-duplicate-props": (string | {
|
|
1273
|
+
ignoreCase: boolean;
|
|
1274
|
+
})[];
|
|
1275
|
+
"react/jsx-no-script-url": string;
|
|
1276
|
+
"react/jsx-no-undef": string;
|
|
1277
|
+
"react/jsx-curly-brace-presence": string[];
|
|
1278
|
+
"react/jsx-fragments": string[];
|
|
1279
|
+
"react/jsx-pascal-case": string;
|
|
1280
|
+
"react/jsx-sort-props": (string | {
|
|
1281
|
+
callbacksLast: boolean;
|
|
1282
|
+
shorthandFirst: boolean;
|
|
1283
|
+
noSortAlphabetically: boolean;
|
|
1284
|
+
reservedFirst: boolean;
|
|
1285
|
+
})[];
|
|
1286
|
+
"react/jsx-uses-react": string;
|
|
1287
|
+
"react/jsx-uses-vars": string;
|
|
1288
|
+
"react-hooks/rules-of-hooks": string;
|
|
1289
|
+
"react-hooks/exhaustive-deps": string;
|
|
1290
|
+
"react/jsx-no-constructed-context-values": string;
|
|
1291
|
+
"no-console": string;
|
|
1292
|
+
"10x/react-in-scope": string;
|
|
1293
|
+
"react/react-in-jsx-scope": string;
|
|
1294
|
+
"react/jsx-key": string;
|
|
1295
|
+
"react/jsx-no-target-blank": string;
|
|
1296
|
+
} | {
|
|
1297
|
+
"react/jsx-no-useless-fragment": string;
|
|
1298
|
+
"react/no-array-index-key": string;
|
|
1299
|
+
"10x/auto-import": (string | {
|
|
1300
|
+
imports: {
|
|
1301
|
+
useRef: string;
|
|
1302
|
+
useEffect: string;
|
|
1303
|
+
useState: string;
|
|
1304
|
+
useCallback: string;
|
|
1305
|
+
useMemo: string;
|
|
1306
|
+
useReducer: string;
|
|
1307
|
+
useCurrentFrame: string;
|
|
1308
|
+
useVideoConfig: string;
|
|
1309
|
+
spring: string;
|
|
1310
|
+
measureSpring: string;
|
|
1311
|
+
random: string;
|
|
1312
|
+
interpolate: string;
|
|
1313
|
+
interpolateColors: string;
|
|
1314
|
+
Easing: string;
|
|
1315
|
+
getInputProps: string;
|
|
1316
|
+
continueRender: string;
|
|
1317
|
+
delayRender: string;
|
|
1318
|
+
AbsoluteFill: string;
|
|
1319
|
+
Sequence: string;
|
|
1320
|
+
Composition: string;
|
|
1321
|
+
Audio: string;
|
|
1322
|
+
Video: string;
|
|
1323
|
+
OffthreadVideo: string;
|
|
1324
|
+
Series: string;
|
|
1325
|
+
Still: string;
|
|
1326
|
+
Freeze: string;
|
|
1327
|
+
Loop: string;
|
|
1328
|
+
staticFile: string;
|
|
1329
|
+
Config: string;
|
|
1330
|
+
Img: string;
|
|
1331
|
+
IFrame: string;
|
|
1332
|
+
Folder: string;
|
|
1333
|
+
z: string;
|
|
1334
|
+
styled: string;
|
|
1335
|
+
};
|
|
1336
|
+
})[];
|
|
1337
|
+
"no-undef": (string | {
|
|
1338
|
+
typeof: boolean;
|
|
1339
|
+
})[];
|
|
1340
|
+
"no-unused-vars": (string | {
|
|
1341
|
+
vars: string;
|
|
1342
|
+
args: string;
|
|
1343
|
+
ignoreRestSiblings: boolean;
|
|
1344
|
+
argsIgnorePattern: string;
|
|
1345
|
+
caughtErrors: string;
|
|
1346
|
+
caughtErrorsIgnorePattern: string;
|
|
1347
|
+
})[];
|
|
1348
|
+
curly: number;
|
|
1349
|
+
"lines-around-comment": number;
|
|
1350
|
+
"max-len": number;
|
|
1351
|
+
"no-confusing-arrow": number;
|
|
1352
|
+
"no-mixed-operators": number;
|
|
1353
|
+
"no-tabs": number;
|
|
1354
|
+
"no-unexpected-multiline": number;
|
|
1355
|
+
quotes: number;
|
|
1356
|
+
"@typescript-eslint/quotes": number;
|
|
1357
|
+
"babel/quotes": number;
|
|
1358
|
+
"array-bracket-newline": string;
|
|
1359
|
+
"array-bracket-spacing": string;
|
|
1360
|
+
"array-element-newline": string;
|
|
1361
|
+
"arrow-parens": string;
|
|
1362
|
+
"arrow-spacing": string;
|
|
1363
|
+
"block-spacing": string;
|
|
1364
|
+
"brace-style": string;
|
|
1365
|
+
"comma-dangle": string;
|
|
1366
|
+
"comma-spacing": string;
|
|
1367
|
+
"comma-style": string;
|
|
1368
|
+
"computed-property-spacing": string;
|
|
1369
|
+
"dot-location": string;
|
|
1370
|
+
"eol-last": string;
|
|
1371
|
+
"func-call-spacing": string;
|
|
1372
|
+
"function-call-argument-newline": string;
|
|
1373
|
+
"function-paren-newline": string;
|
|
1374
|
+
"generator-star": string;
|
|
1375
|
+
"generator-star-spacing": string;
|
|
1376
|
+
"implicit-arrow-linebreak": string;
|
|
1377
|
+
indent: string;
|
|
1378
|
+
"jsx-quotes": string;
|
|
1379
|
+
"key-spacing": string;
|
|
1380
|
+
"keyword-spacing": string;
|
|
1381
|
+
"linebreak-style": string;
|
|
1382
|
+
"multiline-ternary": string;
|
|
1383
|
+
"newline-per-chained-call": string;
|
|
1384
|
+
"new-parens": string;
|
|
1385
|
+
"no-arrow-condition": string;
|
|
1386
|
+
"no-comma-dangle": string;
|
|
1387
|
+
"no-extra-parens": string;
|
|
1388
|
+
"no-extra-semi": string;
|
|
1389
|
+
"no-floating-decimal": string;
|
|
1390
|
+
"no-mixed-spaces-and-tabs": string;
|
|
1391
|
+
"no-multi-spaces": string;
|
|
1392
|
+
"no-multiple-empty-lines": string;
|
|
1393
|
+
"no-reserved-keys": string;
|
|
1394
|
+
"no-space-before-semi": string;
|
|
1395
|
+
"no-trailing-spaces": string;
|
|
1396
|
+
"no-whitespace-before-property": string;
|
|
1397
|
+
"no-wrap-func": string;
|
|
1398
|
+
"nonblock-statement-body-position": string;
|
|
1399
|
+
"object-curly-newline": string;
|
|
1400
|
+
"object-curly-spacing": string;
|
|
1401
|
+
"object-property-newline": string;
|
|
1402
|
+
"one-var-declaration-per-line": string;
|
|
1403
|
+
"operator-linebreak": string;
|
|
1404
|
+
"padded-blocks": string;
|
|
1405
|
+
"quote-props": string;
|
|
1406
|
+
"rest-spread-spacing": string;
|
|
1407
|
+
semi: string;
|
|
1408
|
+
"semi-spacing": string;
|
|
1409
|
+
"semi-style": string;
|
|
1410
|
+
"space-after-function-name": string;
|
|
1411
|
+
"space-after-keywords": string;
|
|
1412
|
+
"space-before-blocks": string;
|
|
1413
|
+
"space-before-function-paren": string;
|
|
1414
|
+
"space-before-function-parentheses": string;
|
|
1415
|
+
"space-before-keywords": string;
|
|
1416
|
+
"space-in-brackets": string;
|
|
1417
|
+
"space-in-parens": string;
|
|
1418
|
+
"space-infix-ops": string;
|
|
1419
|
+
"space-return-throw-case": string;
|
|
1420
|
+
"space-unary-ops": string;
|
|
1421
|
+
"space-unary-word-ops": string;
|
|
1422
|
+
"switch-colon-spacing": string;
|
|
1423
|
+
"template-curly-spacing": string;
|
|
1424
|
+
"template-tag-spacing": string;
|
|
1425
|
+
"unicode-bom": string;
|
|
1426
|
+
"wrap-iife": string;
|
|
1427
|
+
"wrap-regex": string;
|
|
1428
|
+
"yield-star-spacing": string;
|
|
1429
|
+
"@typescript-eslint/brace-style": string;
|
|
1430
|
+
"@typescript-eslint/comma-dangle": string;
|
|
1431
|
+
"@typescript-eslint/comma-spacing": string;
|
|
1432
|
+
"@typescript-eslint/func-call-spacing": string;
|
|
1433
|
+
"@typescript-eslint/indent": string;
|
|
1434
|
+
"@typescript-eslint/keyword-spacing": string;
|
|
1435
|
+
"@typescript-eslint/member-delimiter-style": string;
|
|
1436
|
+
"@typescript-eslint/no-extra-parens": string;
|
|
1437
|
+
"@typescript-eslint/no-extra-semi": string;
|
|
1438
|
+
"@typescript-eslint/object-curly-spacing": string;
|
|
1439
|
+
"@typescript-eslint/semi": string;
|
|
1440
|
+
"@typescript-eslint/space-before-function-paren": string;
|
|
1441
|
+
"@typescript-eslint/space-infix-ops": string;
|
|
1442
|
+
"@typescript-eslint/type-annotation-spacing": string;
|
|
1443
|
+
"react/jsx-child-element-spacing": string;
|
|
1444
|
+
"react/jsx-closing-bracket-location": string;
|
|
1445
|
+
"react/jsx-closing-tag-location": string;
|
|
1446
|
+
"react/jsx-curly-newline": string;
|
|
1447
|
+
"react/jsx-curly-spacing": string;
|
|
1448
|
+
"react/jsx-equals-spacing": string;
|
|
1449
|
+
"react/jsx-first-prop-new-line": string;
|
|
1450
|
+
"react/jsx-indent": string;
|
|
1451
|
+
"react/jsx-indent-props": string;
|
|
1452
|
+
"react/jsx-max-props-per-line": string;
|
|
1453
|
+
"react/jsx-newline": string;
|
|
1454
|
+
"react/jsx-one-expression-per-line": string;
|
|
1455
|
+
"react/jsx-props-no-multi-spaces": string;
|
|
1456
|
+
"react/jsx-tag-spacing": string;
|
|
1457
|
+
"react/jsx-wrap-multilines": string;
|
|
1458
|
+
"for-direction": string;
|
|
1459
|
+
"getter-return": string;
|
|
1460
|
+
"no-async-promise-executor": string;
|
|
1461
|
+
"no-compare-neg-zero": string;
|
|
1462
|
+
"no-cond-assign": string;
|
|
1463
|
+
"no-constant-condition": string;
|
|
1464
|
+
"no-control-regex": string;
|
|
1465
|
+
"no-debugger": string;
|
|
1466
|
+
"no-dupe-args": string;
|
|
1467
|
+
"no-dupe-else-if": string;
|
|
1468
|
+
"no-dupe-keys": string;
|
|
1469
|
+
"no-duplicate-case": string;
|
|
1470
|
+
"no-empty-character-class": string;
|
|
1471
|
+
"no-empty": (string | {
|
|
1472
|
+
allowEmptyCatch: boolean;
|
|
1473
|
+
})[];
|
|
1474
|
+
"no-ex-assign": string;
|
|
1475
|
+
"no-extra-boolean-cast": string;
|
|
1476
|
+
"no-func-assign": string;
|
|
1477
|
+
"no-import-assign": string;
|
|
1478
|
+
"no-inner-declarations": string;
|
|
1479
|
+
"no-invalid-regexp": string;
|
|
1480
|
+
"no-irregular-whitespace": string;
|
|
1481
|
+
"no-loss-of-precision": string;
|
|
1482
|
+
"no-misleading-character-class": string;
|
|
1483
|
+
"no-obj-calls": string;
|
|
1484
|
+
"no-promise-executor-return": string;
|
|
1485
|
+
"no-prototype-builtins": string;
|
|
1486
|
+
"no-regex-spaces": string;
|
|
1487
|
+
"no-setter-return": string;
|
|
1488
|
+
"no-sparse-arrays": string;
|
|
1489
|
+
"no-template-curly-in-string": string;
|
|
1490
|
+
"no-unreachable": string;
|
|
1491
|
+
"no-unreachable-loop": string;
|
|
1492
|
+
"no-unsafe-finally": string;
|
|
1493
|
+
"no-unsafe-negation": string;
|
|
1494
|
+
"no-unsafe-optional-chaining": (string | {
|
|
1495
|
+
disallowArithmeticOperators: boolean;
|
|
1496
|
+
})[];
|
|
1497
|
+
"no-useless-backreference": string;
|
|
1498
|
+
"use-isnan": string;
|
|
1499
|
+
"valid-typeof": (string | {
|
|
1500
|
+
requireStringLiterals: boolean;
|
|
1501
|
+
})[];
|
|
1502
|
+
"accessor-pairs": (string | {
|
|
1503
|
+
enforceForClassMembers: boolean;
|
|
1504
|
+
})[];
|
|
1505
|
+
"array-callback-return": (string | {
|
|
1506
|
+
allowImplicit: boolean;
|
|
1507
|
+
})[];
|
|
1508
|
+
"block-scoped-var": string;
|
|
1509
|
+
complexity: string;
|
|
1510
|
+
"default-case": string;
|
|
1511
|
+
"default-case-last": string;
|
|
1512
|
+
"default-param-last": string;
|
|
1513
|
+
"dot-notation": string;
|
|
1514
|
+
eqeqeq: string;
|
|
1515
|
+
"grouped-accessor-pairs": string[];
|
|
1516
|
+
"guard-for-in": string;
|
|
1517
|
+
"no-alert": string;
|
|
1518
|
+
"no-caller": string;
|
|
1519
|
+
"no-case-declarations": string;
|
|
1520
|
+
"no-constructor-return": string;
|
|
1521
|
+
"no-else-return": (string | {
|
|
1522
|
+
allowElseIf: boolean;
|
|
1523
|
+
})[];
|
|
1524
|
+
"no-empty-pattern": string;
|
|
1525
|
+
"no-eq-null": string;
|
|
1526
|
+
"no-eval": string;
|
|
1527
|
+
"no-extend-native": string;
|
|
1528
|
+
"no-extra-bind": string;
|
|
1529
|
+
"no-extra-label": string;
|
|
1530
|
+
"no-fallthrough": string;
|
|
1531
|
+
"no-global-assign": string;
|
|
1532
|
+
"no-implicit-coercion": string;
|
|
1533
|
+
"no-implicit-globals": string;
|
|
1534
|
+
"no-implied-eval": string;
|
|
1535
|
+
"no-iterator": string;
|
|
1536
|
+
"no-labels": string;
|
|
1537
|
+
"no-lone-blocks": string;
|
|
1538
|
+
"no-multi-str": string;
|
|
1539
|
+
"no-new-func": string;
|
|
1540
|
+
"no-new-wrappers": string;
|
|
1541
|
+
"no-nonoctal-decimal-escape": string;
|
|
1542
|
+
"no-new": string;
|
|
740
1543
|
"no-octal-escape": string;
|
|
741
1544
|
"no-octal": string;
|
|
742
1545
|
"no-proto": string;
|
|
@@ -861,10 +1664,6 @@ declare const _default: {
|
|
|
861
1664
|
})[];
|
|
862
1665
|
"react/button-has-type": string;
|
|
863
1666
|
"react/default-props-match-prop-types": string;
|
|
864
|
-
"react/function-component-definition": (string | {
|
|
865
|
-
namedComponents: string;
|
|
866
|
-
unnamedComponents: string;
|
|
867
|
-
})[];
|
|
868
1667
|
"react/no-access-state-in-setstate": string;
|
|
869
1668
|
"react/no-children-prop": string;
|
|
870
1669
|
"react/no-danger": string;
|
|
@@ -881,8 +1680,6 @@ declare const _default: {
|
|
|
881
1680
|
noTemplateLiterals: boolean;
|
|
882
1681
|
})[];
|
|
883
1682
|
"react/no-this-in-sfc": string;
|
|
884
|
-
"react/no-unescaped-entities": string;
|
|
885
|
-
"react/no-unknown-property": string;
|
|
886
1683
|
"react/no-unsafe": string;
|
|
887
1684
|
"react/no-unused-prop-types": string;
|
|
888
1685
|
"react/no-unused-state": string;
|
|
@@ -925,7 +1722,6 @@ declare const _default: {
|
|
|
925
1722
|
"react/react-in-jsx-scope": string;
|
|
926
1723
|
"react/jsx-key": string;
|
|
927
1724
|
"react/jsx-no-target-blank": string;
|
|
928
|
-
"react/prop-types": string;
|
|
929
1725
|
};
|
|
930
1726
|
settings: {
|
|
931
1727
|
react: {
|