@nfq/eslint-config 4.0.0-beta.12 → 4.0.0-beta.13

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/types/index.d.ts CHANGED
@@ -2474,6 +2474,1267 @@ export declare const NFQEslintConfig: ({
2474
2474
  requireStringLiterals: boolean;
2475
2475
  })[];
2476
2476
  };
2477
+ } | {
2478
+ files: string[];
2479
+ languageOptions: {
2480
+ ecmaVersion: string;
2481
+ globals: Record<string, boolean>;
2482
+ parser: typeof tsParser;
2483
+ parserOptions: {
2484
+ ecmaFeatures: {
2485
+ jsx: boolean;
2486
+ };
2487
+ ecmaVersion: string;
2488
+ project: string;
2489
+ };
2490
+ };
2491
+ linterOptions: {
2492
+ reportUnusedDisableDirectives: string;
2493
+ reportUnusedInlineConfigs: string;
2494
+ };
2495
+ name: string;
2496
+ plugins: Record<string, any>;
2497
+ rules: {
2498
+ '@nfq/component-file-structure': string;
2499
+ '@stylistic/newline-per-chained-call': string;
2500
+ '@typescript-eslint/no-unused-expression': string;
2501
+ '@typescript-eslint/no-unused-expressions': string;
2502
+ 'max-lines': string;
2503
+ 'promise/always-return': string;
2504
+ 'promise/catch-or-return': string;
2505
+ 'promise/prefer-await-to-callbacks': string;
2506
+ 'promise/prefer-await-to-then': string;
2507
+ 'security/detect-object-injection': string;
2508
+ '@stylistic/brace-style': string;
2509
+ '@stylistic/comma-dangle': string;
2510
+ '@stylistic/comma-spacing': string;
2511
+ '@stylistic/function-call-spacing': string;
2512
+ '@stylistic/keyword-spacing': string;
2513
+ '@stylistic/lines-between-class-members': string;
2514
+ '@stylistic/no-extra-semi': string;
2515
+ '@stylistic/object-curly-spacing': string;
2516
+ '@stylistic/padding-line-between-statements': string;
2517
+ '@stylistic/quotes': string;
2518
+ '@stylistic/semi': string;
2519
+ '@stylistic/space-before-blocks': string;
2520
+ '@stylistic/space-before-function-paren': string;
2521
+ '@stylistic/space-infix-ops': string;
2522
+ 'default-param-last': string;
2523
+ 'dot-notation': string;
2524
+ 'jsdoc/require-param-type': string;
2525
+ 'jsdoc/require-returns-type': string;
2526
+ 'no-array-constructor': string;
2527
+ 'no-dupe-class-members': string;
2528
+ 'no-empty-function': string;
2529
+ 'no-implied-eval': string;
2530
+ 'no-invalid-this': string;
2531
+ 'no-loop-func': string;
2532
+ 'no-loss-of-precision': string;
2533
+ 'no-redeclare': string;
2534
+ 'no-return-await': string;
2535
+ 'no-shadow': string;
2536
+ 'no-throw-literal': string;
2537
+ 'no-undefined': string;
2538
+ 'no-unused-expressions': string;
2539
+ 'no-unused-vars': string;
2540
+ 'no-use-before-define': string;
2541
+ 'no-useless-constructor': string;
2542
+ 'react/default-props-match-prop-types': string;
2543
+ 'react/require-default-props': string;
2544
+ '@nfq/no-empty-lines-in-types': string;
2545
+ '@typescript-eslint/adjacent-overload-signatures': string;
2546
+ '@typescript-eslint/array-type': (string | {
2547
+ default: string;
2548
+ })[];
2549
+ '@typescript-eslint/class-literal-property-style': string;
2550
+ '@typescript-eslint/consistent-generic-constructors': string[];
2551
+ '@typescript-eslint/consistent-indexed-object-style': string[];
2552
+ '@typescript-eslint/consistent-type-assertions': (string | {
2553
+ assertionStyle: string;
2554
+ })[];
2555
+ '@typescript-eslint/consistent-type-definitions': string;
2556
+ '@typescript-eslint/consistent-type-exports': string;
2557
+ '@typescript-eslint/consistent-type-imports': (string | {
2558
+ disallowTypeAnnotations: boolean;
2559
+ prefer: string;
2560
+ })[];
2561
+ '@typescript-eslint/default-param-last': string;
2562
+ '@typescript-eslint/dot-notation': (string | {
2563
+ allowKeywords: boolean;
2564
+ })[];
2565
+ '@typescript-eslint/explicit-function-return-type': string;
2566
+ '@typescript-eslint/explicit-member-accessibility': (string | {
2567
+ accessibility: string;
2568
+ })[];
2569
+ '@typescript-eslint/explicit-module-boundary-types': string;
2570
+ '@typescript-eslint/indent': string;
2571
+ '@typescript-eslint/init-declarations': string;
2572
+ '@typescript-eslint/member-ordering': (string | {
2573
+ default: {
2574
+ order: string;
2575
+ };
2576
+ interfaces: {
2577
+ order: string;
2578
+ };
2579
+ typeLiterals: {
2580
+ order: string;
2581
+ };
2582
+ })[];
2583
+ '@typescript-eslint/method-signature-style': string[];
2584
+ '@typescript-eslint/no-array-constructor': string;
2585
+ '@typescript-eslint/no-base-to-string': string;
2586
+ '@typescript-eslint/no-confusing-non-null-assertion': string;
2587
+ '@typescript-eslint/no-confusing-void-expression': string;
2588
+ '@typescript-eslint/no-dupe-class-members': string;
2589
+ '@typescript-eslint/no-duplicate-enum-values': string;
2590
+ '@typescript-eslint/no-dynamic-delete': string;
2591
+ '@typescript-eslint/no-empty-function': (string | {
2592
+ allow: string[];
2593
+ })[];
2594
+ '@typescript-eslint/no-empty-interface': string;
2595
+ '@typescript-eslint/no-empty-object-type': string;
2596
+ '@typescript-eslint/no-explicit-any': string;
2597
+ '@typescript-eslint/no-extra-non-null-assertion': string;
2598
+ '@typescript-eslint/no-extraneous-class': string;
2599
+ '@typescript-eslint/no-floating-promises': string;
2600
+ '@typescript-eslint/no-for-in-array': string;
2601
+ '@typescript-eslint/no-implied-eval': string;
2602
+ '@typescript-eslint/no-inferrable-types': string;
2603
+ '@typescript-eslint/no-invalid-this': string;
2604
+ '@typescript-eslint/no-invalid-void-type': string;
2605
+ '@typescript-eslint/no-loop-func': string;
2606
+ '@typescript-eslint/no-loss-of-precision': string;
2607
+ '@typescript-eslint/no-misused-new': string;
2608
+ '@typescript-eslint/no-misused-promises': (string | {
2609
+ checksVoidReturn: boolean;
2610
+ })[];
2611
+ '@typescript-eslint/no-namespace': (string | {
2612
+ allowDeclarations: boolean;
2613
+ allowDefinitionFiles: boolean;
2614
+ })[];
2615
+ '@typescript-eslint/no-non-null-asserted-nullish-coalescing': string;
2616
+ '@typescript-eslint/no-non-null-asserted-optional-chain': string;
2617
+ '@typescript-eslint/no-non-null-assertion': string;
2618
+ '@typescript-eslint/no-redeclare': string;
2619
+ '@typescript-eslint/no-redundant-type-constituents': string;
2620
+ '@typescript-eslint/no-require-imports': string;
2621
+ '@typescript-eslint/no-shadow': string;
2622
+ '@typescript-eslint/no-this-alias': (string | {
2623
+ allowedNames: string[];
2624
+ })[];
2625
+ '@typescript-eslint/no-unnecessary-boolean-literal-compare': string;
2626
+ '@typescript-eslint/no-unnecessary-condition': string;
2627
+ '@typescript-eslint/no-unnecessary-qualifier': string;
2628
+ '@typescript-eslint/no-unnecessary-type-arguments': string;
2629
+ '@typescript-eslint/no-unnecessary-type-assertion': string;
2630
+ '@typescript-eslint/no-unnecessary-type-constraint': string;
2631
+ '@typescript-eslint/no-unsafe-argument': string;
2632
+ '@typescript-eslint/no-unsafe-assignment': string;
2633
+ '@typescript-eslint/no-unsafe-call': string;
2634
+ '@typescript-eslint/no-unsafe-function-type': string;
2635
+ '@typescript-eslint/no-unsafe-member-access': string;
2636
+ '@typescript-eslint/no-unsafe-return': string;
2637
+ '@typescript-eslint/no-unused-vars': (string | {
2638
+ args: string;
2639
+ argsIgnorePattern: string;
2640
+ caughtErrors: string;
2641
+ ignoreRestSiblings: boolean;
2642
+ vars: string;
2643
+ })[];
2644
+ '@typescript-eslint/no-use-before-define': (string | {
2645
+ classes: boolean;
2646
+ functions: boolean;
2647
+ variables: boolean;
2648
+ })[];
2649
+ '@typescript-eslint/no-useless-constructor': string;
2650
+ '@typescript-eslint/no-useless-empty-export': string;
2651
+ '@typescript-eslint/no-var-requires': string;
2652
+ '@typescript-eslint/no-wrapper-object-types': string;
2653
+ '@typescript-eslint/non-nullable-type-assertion-style': string;
2654
+ '@typescript-eslint/only-throw-error': string;
2655
+ '@typescript-eslint/prefer-as-const': string;
2656
+ '@typescript-eslint/prefer-enum-initializers': string;
2657
+ '@typescript-eslint/prefer-for-of': string;
2658
+ '@typescript-eslint/prefer-function-type': string;
2659
+ '@typescript-eslint/prefer-includes': string;
2660
+ '@typescript-eslint/prefer-literal-enum-member': string;
2661
+ '@typescript-eslint/prefer-namespace-keyword': string;
2662
+ '@typescript-eslint/prefer-nullish-coalescing': string;
2663
+ '@typescript-eslint/prefer-optional-chain': string;
2664
+ '@typescript-eslint/prefer-readonly': string;
2665
+ '@typescript-eslint/prefer-readonly-parameter-types': string;
2666
+ '@typescript-eslint/prefer-reduce-type-parameter': string;
2667
+ '@typescript-eslint/prefer-return-this-type': string;
2668
+ '@typescript-eslint/prefer-string-starts-ends-with': string;
2669
+ '@typescript-eslint/prefer-ts-expect-error': string;
2670
+ '@typescript-eslint/promise-function-async': string;
2671
+ '@typescript-eslint/require-array-sort-compare': string;
2672
+ '@typescript-eslint/require-await': string;
2673
+ '@typescript-eslint/restrict-plus-operands': string;
2674
+ '@typescript-eslint/restrict-template-expressions': string;
2675
+ '@typescript-eslint/return-await': string;
2676
+ '@typescript-eslint/sort-type-constituents': (string | {
2677
+ checkIntersections: boolean;
2678
+ })[];
2679
+ '@typescript-eslint/strict-boolean-expressions': string;
2680
+ '@typescript-eslint/switch-exhaustiveness-check': (string | {
2681
+ allowDefaultCaseForExhaustiveSwitch: boolean;
2682
+ considerDefaultExhaustiveForUnions: boolean;
2683
+ })[];
2684
+ '@typescript-eslint/triple-slash-reference': string;
2685
+ '@typescript-eslint/unified-signatures': string;
2686
+ 'react-hooks/component-hook-factories': string;
2687
+ 'react-hooks/error-boundaries': string;
2688
+ 'react-hooks/exhaustive-deps': string;
2689
+ 'react-hooks/globals': string;
2690
+ 'react-hooks/immutability': string;
2691
+ 'react-hooks/purity': string;
2692
+ 'react-hooks/rules-of-hooks': string;
2693
+ 'react-hooks/set-state-in-effect': string;
2694
+ 'react-hooks/set-state-in-render': string;
2695
+ 'react-hooks/static-components': string;
2696
+ 'react-hooks/use-memo': string;
2697
+ 'jsx-a11y/accessible-emoji': string;
2698
+ 'jsx-a11y/alt-text': (string | {
2699
+ area: never[];
2700
+ elements: string[];
2701
+ img: never[];
2702
+ 'input[type="image"]': never[];
2703
+ object: never[];
2704
+ })[];
2705
+ 'jsx-a11y/anchor-has-content': (string | {
2706
+ components: never[];
2707
+ })[];
2708
+ 'jsx-a11y/anchor-is-valid': (string | {
2709
+ aspects: string[];
2710
+ components: string[];
2711
+ specialLink: string[];
2712
+ })[];
2713
+ 'jsx-a11y/aria-activedescendant-has-tabindex': string;
2714
+ 'jsx-a11y/aria-props': string;
2715
+ 'jsx-a11y/aria-proptypes': string;
2716
+ 'jsx-a11y/aria-role': (string | {
2717
+ ignoreNonDom: boolean;
2718
+ })[];
2719
+ 'jsx-a11y/aria-unsupported-elements': string;
2720
+ 'jsx-a11y/click-events-have-key-events': string;
2721
+ 'jsx-a11y/heading-has-content': (string | {
2722
+ components: never[];
2723
+ })[];
2724
+ 'jsx-a11y/html-has-lang': string;
2725
+ 'jsx-a11y/iframe-has-title': string;
2726
+ 'jsx-a11y/img-redundant-alt': string;
2727
+ 'jsx-a11y/interactive-supports-focus': string;
2728
+ 'jsx-a11y/label-has-associated-control': (string | {
2729
+ assert: string;
2730
+ controlComponents: never[];
2731
+ depth: number;
2732
+ labelAttributes: never[];
2733
+ labelComponents: never[];
2734
+ })[];
2735
+ 'jsx-a11y/lang': string;
2736
+ 'jsx-a11y/media-has-caption': (string | {
2737
+ audio: never[];
2738
+ track: never[];
2739
+ video: never[];
2740
+ })[];
2741
+ 'jsx-a11y/mouse-events-have-key-events': string;
2742
+ 'jsx-a11y/no-access-key': string;
2743
+ 'jsx-a11y/no-autofocus': (string | {
2744
+ ignoreNonDOM: boolean;
2745
+ })[];
2746
+ 'jsx-a11y/no-distracting-elements': (string | {
2747
+ elements: string[];
2748
+ })[];
2749
+ 'jsx-a11y/no-interactive-element-to-noninteractive-role': (string | {
2750
+ tr: string[];
2751
+ })[];
2752
+ 'jsx-a11y/no-noninteractive-element-interactions': (string | {
2753
+ handlers: string[];
2754
+ })[];
2755
+ 'jsx-a11y/no-noninteractive-element-to-interactive-role': (string | {
2756
+ li: string[];
2757
+ ol: string[];
2758
+ table: string[];
2759
+ td: string[];
2760
+ ul: string[];
2761
+ })[];
2762
+ 'jsx-a11y/no-noninteractive-tabindex': (string | {
2763
+ roles: string[];
2764
+ tags: never[];
2765
+ })[];
2766
+ 'jsx-a11y/no-onchange': string;
2767
+ 'jsx-a11y/no-redundant-roles': string;
2768
+ 'jsx-a11y/no-static-element-interactions': (string | {
2769
+ handlers: string[];
2770
+ })[];
2771
+ 'jsx-a11y/role-has-required-aria-props': string;
2772
+ 'jsx-a11y/role-supports-aria-props': string;
2773
+ 'jsx-a11y/scope': string;
2774
+ 'jsx-a11y/tabindex-no-positive': string;
2775
+ 'no-underscore-dangle': (string | {
2776
+ allow: string[];
2777
+ allowAfterSuper: boolean;
2778
+ allowAfterThis: boolean;
2779
+ enforceInMethodNames: boolean;
2780
+ })[];
2781
+ 'react/boolean-prop-naming': (string | {
2782
+ message: string;
2783
+ propTypeNames: string[];
2784
+ rule: string;
2785
+ })[];
2786
+ 'react/button-has-type': (string | {
2787
+ button: boolean;
2788
+ reset: boolean;
2789
+ submit: boolean;
2790
+ })[];
2791
+ 'react/checked-requires-onchange-or-readonly': string;
2792
+ 'react/destructuring-assignment': string[];
2793
+ 'react/display-name': (string | {
2794
+ ignoreTranspilerName: boolean;
2795
+ })[];
2796
+ 'react/forbid-component-props': (string | {
2797
+ forbid: never[];
2798
+ })[];
2799
+ 'react/forbid-dom-props': (string | {
2800
+ forbid: never[];
2801
+ })[];
2802
+ 'react/forbid-elements': (string | {
2803
+ forbid: never[];
2804
+ })[];
2805
+ 'react/forbid-foreign-prop-types': (string | {
2806
+ allowInPropTypes: boolean;
2807
+ })[];
2808
+ 'react/forbid-prop-types': (string | {
2809
+ checkChildContextTypes: boolean;
2810
+ checkContextTypes: boolean;
2811
+ forbid: string[];
2812
+ })[];
2813
+ 'react/function-component-definition': (string | {
2814
+ namedComponents: string;
2815
+ unnamedComponents: string;
2816
+ })[];
2817
+ 'react/iframe-missing-sandbox': string;
2818
+ 'react/jsx-boolean-value': (string | {
2819
+ always: never[];
2820
+ })[];
2821
+ 'react/jsx-child-element-spacing': string;
2822
+ 'react/jsx-closing-bracket-location': string[];
2823
+ 'react/jsx-closing-tag-location': string;
2824
+ 'react/jsx-curly-brace-presence': (string | {
2825
+ children: string;
2826
+ props: string;
2827
+ })[];
2828
+ 'react/jsx-curly-newline': (string | {
2829
+ multiline: string;
2830
+ singleline: string;
2831
+ })[];
2832
+ 'react/jsx-curly-spacing': (string | {
2833
+ allowMultiline: boolean;
2834
+ })[];
2835
+ 'react/jsx-equals-spacing': string[];
2836
+ 'react/jsx-filename-extension': (string | {
2837
+ extensions: string[];
2838
+ })[];
2839
+ 'react/jsx-first-prop-new-line': string[];
2840
+ 'react/jsx-fragments': string[];
2841
+ 'react/jsx-handler-names': (string | {
2842
+ eventHandlerPrefix: string;
2843
+ eventHandlerPropPrefix: string;
2844
+ })[];
2845
+ 'react/jsx-indent': (string | number | {
2846
+ checkAttributes: boolean;
2847
+ indentLogicalExpressions: boolean;
2848
+ })[];
2849
+ 'react/jsx-indent-props': (string | number)[];
2850
+ 'react/jsx-key': (string | {
2851
+ checkFragmentShorthand: boolean;
2852
+ checkKeyMustBeforeSpread: boolean;
2853
+ warnOnDuplicates: boolean;
2854
+ })[];
2855
+ 'react/jsx-max-depth': string;
2856
+ 'react/jsx-max-props-per-line': (string | {
2857
+ maximum: number;
2858
+ when: string;
2859
+ })[];
2860
+ 'react/jsx-newline': (string | {
2861
+ prevent: boolean;
2862
+ })[];
2863
+ 'react/jsx-no-bind': (string | {
2864
+ allowArrowFunctions: boolean;
2865
+ allowBind: boolean;
2866
+ allowFunctions: boolean;
2867
+ ignoreDOMComponents: boolean;
2868
+ ignoreRefs: boolean;
2869
+ })[];
2870
+ 'react/jsx-no-comment-textnodes': string;
2871
+ 'react/jsx-no-duplicate-props': (string | {
2872
+ ignoreCase: boolean;
2873
+ })[];
2874
+ 'react/jsx-no-leaked-render': string;
2875
+ 'react/jsx-no-literals': (string | {
2876
+ noStrings: boolean;
2877
+ })[];
2878
+ 'react/jsx-no-script-url': (string | {
2879
+ name: string;
2880
+ props: string[];
2881
+ }[])[];
2882
+ 'react/jsx-no-target-blank': (string | {
2883
+ enforceDynamicLinks: string;
2884
+ })[];
2885
+ 'react/jsx-no-undef': (string | {
2886
+ allowGlobals: boolean;
2887
+ })[];
2888
+ 'react/jsx-no-useless-fragment': string;
2889
+ 'react/jsx-one-expression-per-line': (string | {
2890
+ allow: string;
2891
+ })[];
2892
+ 'react/jsx-pascal-case': (string | {
2893
+ allowAllCaps: boolean;
2894
+ ignore: never[];
2895
+ })[];
2896
+ 'react/jsx-props-no-multi-spaces': string;
2897
+ 'react/jsx-props-no-spread-multi': string;
2898
+ 'react/jsx-props-no-spreading': (string | {
2899
+ custom: string;
2900
+ exceptions: never[];
2901
+ explicitSpread: string;
2902
+ html: string;
2903
+ })[];
2904
+ 'react/jsx-sort-props': (string | {
2905
+ callbacksLast: boolean;
2906
+ ignoreCase: boolean;
2907
+ noSortAlphabetically: boolean;
2908
+ reservedFirst: boolean;
2909
+ shorthandFirst: boolean;
2910
+ shorthandLast: boolean;
2911
+ })[];
2912
+ 'react/jsx-tag-spacing': (string | {
2913
+ afterOpening: string;
2914
+ beforeClosing: string;
2915
+ beforeSelfClosing: string;
2916
+ closingSlash: string;
2917
+ })[];
2918
+ 'react/jsx-uses-react': string;
2919
+ 'react/jsx-uses-vars': string;
2920
+ 'react/jsx-wrap-multilines': (string | {
2921
+ arrow: string;
2922
+ assignment: string;
2923
+ condition: string;
2924
+ declaration: string;
2925
+ logical: string;
2926
+ prop: string;
2927
+ return: string;
2928
+ })[];
2929
+ 'react/no-access-state-in-setstate': string;
2930
+ 'react/no-adjacent-inline-elements': string;
2931
+ 'react/no-array-index-key': string;
2932
+ 'react/no-arrow-function-lifecycle': string;
2933
+ 'react/no-children-prop': string;
2934
+ 'react/no-danger': string;
2935
+ 'react/no-danger-with-children': string;
2936
+ 'react/no-deprecated': string;
2937
+ 'react/no-did-mount-set-state': string;
2938
+ 'react/no-did-update-set-state': string;
2939
+ 'react/no-direct-mutation-state': string;
2940
+ 'react/no-find-dom-node': string;
2941
+ 'react/no-is-mounted': string;
2942
+ 'react/no-multi-comp': (string | {
2943
+ ignoreStateless: boolean;
2944
+ })[];
2945
+ 'react/no-namespace': string;
2946
+ 'react/no-redundant-should-component-update': string;
2947
+ 'react/no-render-return-value': string;
2948
+ 'react/no-set-state': string;
2949
+ 'react/no-string-refs': string;
2950
+ 'react/no-this-in-sfc': string;
2951
+ 'react/no-typos': string;
2952
+ 'react/no-unescaped-entities': string;
2953
+ 'react/no-unknown-property': string;
2954
+ 'react/no-unsafe': (string | {
2955
+ checkAliases: boolean;
2956
+ })[];
2957
+ 'react/no-unused-class-component-methods': string;
2958
+ 'react/no-unused-prop-types': (string | {
2959
+ customValidators: never[];
2960
+ skipShapeProps: boolean;
2961
+ })[];
2962
+ 'react/no-unused-state': string;
2963
+ 'react/no-will-update-set-state': string;
2964
+ 'react/prefer-es6-class': string[];
2965
+ 'react/prefer-read-only-props': string;
2966
+ 'react/prefer-stateless-function': (string | {
2967
+ ignorePureComponents: boolean;
2968
+ })[];
2969
+ 'react/prop-types': (string | {
2970
+ customValidators: never[];
2971
+ ignore: never[];
2972
+ skipUndeclared: boolean;
2973
+ })[];
2974
+ 'react/react-in-jsx-scope': string;
2975
+ 'react/require-optimization': (string | {
2976
+ allowDecorators: string[];
2977
+ })[];
2978
+ 'react/require-render-return': string;
2979
+ 'react/self-closing-comp': string;
2980
+ 'react/sort-comp': (string | {
2981
+ groups: {
2982
+ lifecycle: string[];
2983
+ rendering: string[];
2984
+ };
2985
+ order: string[];
2986
+ })[];
2987
+ 'react/sort-default-props': (string | {
2988
+ ignoreCase: boolean;
2989
+ })[];
2990
+ 'react/sort-prop-types': (string | {
2991
+ callbacksLast: boolean;
2992
+ ignoreCase: boolean;
2993
+ requiredFirst: boolean;
2994
+ sortShapeProp: boolean;
2995
+ })[];
2996
+ 'react/state-in-constructor': string[];
2997
+ 'react/static-property-placement': string[];
2998
+ 'react/style-prop-object': string;
2999
+ 'react/void-dom-elements-no-children': string;
3000
+ '@nfq/component-single-hook': string;
3001
+ '@nfq/styled-components-order': string;
3002
+ 'n/callback-return': string;
3003
+ 'n/exports-style': string[];
3004
+ 'n/file-extension-in-import': string;
3005
+ 'n/global-require': string;
3006
+ 'n/handle-callback-err': string;
3007
+ 'n/hashbang': string;
3008
+ 'n/no-callback-literal': string;
3009
+ 'n/no-deprecated-api': string;
3010
+ 'n/no-exports-assign': string;
3011
+ 'n/no-extraneous-import': string;
3012
+ 'n/no-extraneous-require': string;
3013
+ 'n/no-missing-import': string;
3014
+ 'n/no-missing-require': string;
3015
+ 'n/no-mixed-requires': string;
3016
+ 'n/no-new-require': string;
3017
+ 'n/no-path-concat': string;
3018
+ 'n/no-process-env': string;
3019
+ 'n/no-process-exit': string;
3020
+ 'n/no-restricted-import': string;
3021
+ 'n/no-restricted-require': string;
3022
+ 'n/no-sync': string;
3023
+ 'n/no-top-level-await': string;
3024
+ 'n/no-unpublished-bin': string;
3025
+ 'n/no-unpublished-import': string;
3026
+ 'n/no-unpublished-require': string;
3027
+ 'n/no-unsupported-features/es-builtins': string;
3028
+ 'n/no-unsupported-features/es-syntax': (string | {
3029
+ ignores: string[];
3030
+ })[];
3031
+ 'n/no-unsupported-features/node-builtins': string;
3032
+ 'n/prefer-global/buffer': string[];
3033
+ 'n/prefer-global/console': string[];
3034
+ 'n/prefer-global/process': string[];
3035
+ 'n/prefer-global/text-decoder': string[];
3036
+ 'n/prefer-global/text-encoder': string[];
3037
+ 'n/prefer-global/url': string[];
3038
+ 'n/prefer-global/url-search-params': string[];
3039
+ 'n/prefer-node-protocol': string;
3040
+ 'n/prefer-promises/dns': string;
3041
+ 'n/prefer-promises/fs': string;
3042
+ 'n/process-exit-as-throw': string;
3043
+ '@stylistic/array-bracket-newline': string[];
3044
+ '@stylistic/array-bracket-spacing': string[];
3045
+ '@stylistic/array-element-newline': string[];
3046
+ '@stylistic/arrow-parens': string[];
3047
+ '@stylistic/arrow-spacing': (string | {
3048
+ after: boolean;
3049
+ before: boolean;
3050
+ })[];
3051
+ '@stylistic/block-spacing': string[];
3052
+ '@stylistic/comma-style': (string | {
3053
+ exceptions: {
3054
+ ArrayExpression: boolean;
3055
+ ArrayPattern: boolean;
3056
+ ArrowFunctionExpression: boolean;
3057
+ CallExpression: boolean;
3058
+ FunctionDeclaration: boolean;
3059
+ FunctionExpression: boolean;
3060
+ ImportDeclaration: boolean;
3061
+ NewExpression: boolean;
3062
+ ObjectExpression: boolean;
3063
+ ObjectPattern: boolean;
3064
+ VariableDeclaration: boolean;
3065
+ };
3066
+ })[];
3067
+ '@stylistic/computed-property-spacing': string[];
3068
+ '@stylistic/dot-location': string[];
3069
+ '@stylistic/eol-last': string[];
3070
+ '@stylistic/function-call-argument-newline': string[];
3071
+ '@stylistic/function-paren-newline': string[];
3072
+ '@stylistic/generator-star-spacing': (string | {
3073
+ after: boolean;
3074
+ before: boolean;
3075
+ })[];
3076
+ '@stylistic/implicit-arrow-linebreak': string[];
3077
+ '@stylistic/indent': (string | number | {
3078
+ ArrayExpression: string;
3079
+ CallExpression: {
3080
+ arguments: string;
3081
+ };
3082
+ flatTernaryExpressions: boolean;
3083
+ FunctionDeclaration: {
3084
+ body: number;
3085
+ parameters: string;
3086
+ };
3087
+ FunctionExpression: {
3088
+ body: number;
3089
+ parameters: string;
3090
+ };
3091
+ ignoreComments: boolean;
3092
+ ignoredNodes: string[];
3093
+ ImportDeclaration: string;
3094
+ ObjectExpression: string;
3095
+ outerIIFEBody: number;
3096
+ SwitchCase: number;
3097
+ VariableDeclarator: string;
3098
+ })[];
3099
+ '@stylistic/indent-binary-ops': (string | number)[];
3100
+ '@stylistic/jsx-quotes': string[];
3101
+ '@stylistic/key-spacing': (string | {
3102
+ afterColon: boolean;
3103
+ beforeColon: boolean;
3104
+ mode: string;
3105
+ })[];
3106
+ '@stylistic/line-comment-position': (string | {
3107
+ applyDefaultPatterns: boolean;
3108
+ ignorePattern: string;
3109
+ position: string;
3110
+ })[];
3111
+ '@stylistic/linebreak-style': string[];
3112
+ '@stylistic/lines-around-comment': string;
3113
+ '@stylistic/max-len': (string | {
3114
+ code: number;
3115
+ ignoreComments: boolean;
3116
+ ignoreRegExpLiterals: boolean;
3117
+ ignoreTemplateLiterals: boolean;
3118
+ ignoreUrls: boolean;
3119
+ })[];
3120
+ '@stylistic/max-statements-per-line': (string | {
3121
+ max: number;
3122
+ })[];
3123
+ '@stylistic/member-delimiter-style': (string | {
3124
+ multiline: {
3125
+ delimiter: string;
3126
+ requireLast: boolean;
3127
+ };
3128
+ multilineDetection: string;
3129
+ singleline: {
3130
+ delimiter: string;
3131
+ requireLast: boolean;
3132
+ };
3133
+ })[];
3134
+ '@stylistic/multiline-ternary': string[];
3135
+ '@stylistic/new-parens': string[];
3136
+ '@stylistic/no-confusing-arrow': (string | {
3137
+ allowParens: boolean;
3138
+ })[];
3139
+ '@stylistic/no-extra-parens': string;
3140
+ '@stylistic/no-floating-decimal': string;
3141
+ '@stylistic/no-mixed-operators': (string | {
3142
+ allowSamePrecedence: boolean;
3143
+ groups: string[][];
3144
+ })[];
3145
+ '@stylistic/no-mixed-spaces-and-tabs': string;
3146
+ '@stylistic/no-multi-spaces': string;
3147
+ '@stylistic/no-multiple-empty-lines': (string | {
3148
+ max: number;
3149
+ maxBOF: number;
3150
+ maxEOF: number;
3151
+ })[];
3152
+ '@stylistic/no-tabs': string;
3153
+ '@stylistic/no-trailing-spaces': string;
3154
+ '@stylistic/no-whitespace-before-property': string;
3155
+ '@stylistic/nonblock-statement-body-position': (string | {
3156
+ overrides: {};
3157
+ })[];
3158
+ '@stylistic/object-curly-newline': (string | {
3159
+ ExportDeclaration: {
3160
+ consistent: boolean;
3161
+ };
3162
+ ImportDeclaration: {
3163
+ consistent: boolean;
3164
+ };
3165
+ ObjectExpression: {
3166
+ minProperties: number;
3167
+ multiline: boolean;
3168
+ };
3169
+ ObjectPattern: {
3170
+ consistent: boolean;
3171
+ };
3172
+ TSEnumBody: {
3173
+ consistent: boolean;
3174
+ };
3175
+ TSInterfaceBody: {
3176
+ consistent: boolean;
3177
+ };
3178
+ TSTypeLiteral: {
3179
+ consistent: boolean;
3180
+ };
3181
+ })[];
3182
+ '@stylistic/object-property-newline': string;
3183
+ '@stylistic/one-var-declaration-per-line': string[];
3184
+ '@stylistic/operator-linebreak': string[];
3185
+ '@stylistic/padded-blocks': string[];
3186
+ '@stylistic/quote-props': (string | {
3187
+ keywords: boolean;
3188
+ numbers: boolean;
3189
+ unnecessary: boolean;
3190
+ })[];
3191
+ '@stylistic/rest-spread-spacing': string[];
3192
+ '@stylistic/semi-spacing': (string | {
3193
+ after: boolean;
3194
+ before: boolean;
3195
+ })[];
3196
+ '@stylistic/semi-style': string[];
3197
+ '@stylistic/space-in-parens': string[];
3198
+ '@stylistic/space-unary-ops': (string | {
3199
+ nonwords: boolean;
3200
+ overrides: {};
3201
+ words: boolean;
3202
+ })[];
3203
+ '@stylistic/spaced-comment': (string | {
3204
+ block: {
3205
+ balanced: boolean;
3206
+ exceptions: string[];
3207
+ markers: string[];
3208
+ };
3209
+ line: {
3210
+ exceptions: string[];
3211
+ markers: string[];
3212
+ };
3213
+ })[];
3214
+ '@stylistic/switch-colon-spacing': (string | {
3215
+ after: boolean;
3216
+ before: boolean;
3217
+ })[];
3218
+ '@stylistic/template-curly-spacing': string[];
3219
+ '@stylistic/template-tag-spacing': string[];
3220
+ '@stylistic/type-annotation-spacing': string;
3221
+ '@stylistic/type-generic-spacing': string;
3222
+ '@stylistic/type-named-tuple-spacing': string;
3223
+ '@stylistic/wrap-iife': (string | {
3224
+ functionPrototypeMethods: boolean;
3225
+ })[];
3226
+ '@stylistic/wrap-regex': string;
3227
+ '@stylistic/yield-star-spacing': string[];
3228
+ 'security/detect-bidi-characters': string;
3229
+ 'security/detect-buffer-noassert': string;
3230
+ 'security/detect-child-process': string;
3231
+ 'security/detect-disable-mustache-escape': string;
3232
+ 'security/detect-eval-with-expression': string;
3233
+ 'security/detect-new-buffer': string;
3234
+ 'security/detect-no-csrf-before-method-override': string;
3235
+ 'security/detect-non-literal-fs-filename': string;
3236
+ 'security/detect-non-literal-regexp': string;
3237
+ 'security/detect-non-literal-require': string;
3238
+ 'security/detect-possible-timing-attacks': string;
3239
+ 'security/detect-pseudoRandomBytes': string;
3240
+ 'security/detect-unsafe-regex': string;
3241
+ 'no-unsanitized/method': string;
3242
+ 'no-unsanitized/property': string;
3243
+ 'redos/no-vulnerable': (string | {
3244
+ cache: boolean;
3245
+ checker: string;
3246
+ ignoreErrors: boolean;
3247
+ permittableComplexities: string[];
3248
+ timeout: number;
3249
+ })[];
3250
+ 'promise/avoid-new': string;
3251
+ 'promise/no-callback-in-promise': string;
3252
+ 'promise/no-native': string;
3253
+ 'promise/no-nesting': string;
3254
+ 'promise/no-new-statics': string;
3255
+ 'promise/no-promise-in-callback': string;
3256
+ 'promise/no-return-in-finally': string;
3257
+ 'promise/no-return-wrap': string;
3258
+ 'promise/param-names': string;
3259
+ 'promise/valid-params': string;
3260
+ '@nfq/no-empty-lines-in-objects': string;
3261
+ '@nfq/no-magic-numbers': (string | {
3262
+ detectObjects: boolean;
3263
+ enforceConst: boolean;
3264
+ ignore: number[];
3265
+ ignoreArrayIndexes: boolean;
3266
+ ignoreArrays: boolean;
3267
+ ignoreClassFieldInitialValues: boolean;
3268
+ ignoreConstDeclarations: boolean;
3269
+ ignoreDefaultValues: boolean;
3270
+ ignoreFunctions: string[];
3271
+ })[];
3272
+ '@nfq/no-unbound-method': (string | {
3273
+ decoratorNames: string[];
3274
+ })[];
3275
+ '@nfq/object-property-newline': string;
3276
+ '@nfq/sort-keys': (string | {
3277
+ caseSensitive: boolean;
3278
+ ignorePropTypes: boolean;
3279
+ methodsExtra: boolean;
3280
+ natural: boolean;
3281
+ })[];
3282
+ 'jsdoc/check-access': string;
3283
+ 'jsdoc/check-alignment': string;
3284
+ 'jsdoc/check-examples': string;
3285
+ 'jsdoc/check-indentation': string;
3286
+ 'jsdoc/check-line-alignment': (string | {
3287
+ tags: string[];
3288
+ })[];
3289
+ 'jsdoc/check-param-names': (string | {
3290
+ checkDestructured: boolean;
3291
+ checkRestProperty: boolean;
3292
+ enableFixer: boolean;
3293
+ })[];
3294
+ 'jsdoc/check-property-names': (string | {
3295
+ enableFixer: boolean;
3296
+ })[];
3297
+ 'jsdoc/check-syntax': string;
3298
+ 'jsdoc/check-tag-names': string;
3299
+ 'jsdoc/check-types': string;
3300
+ 'jsdoc/check-values': string;
3301
+ 'jsdoc/empty-tags': string;
3302
+ 'jsdoc/implements-on-classes': string;
3303
+ 'jsdoc/match-description': string;
3304
+ 'jsdoc/match-name': string;
3305
+ 'jsdoc/multiline-blocks': (string | {
3306
+ noFinalLineText: boolean;
3307
+ noMultilineBlocks: boolean;
3308
+ noSingleLineBlocks: boolean;
3309
+ noZeroLineText: boolean;
3310
+ })[];
3311
+ 'jsdoc/no-bad-blocks': string;
3312
+ 'jsdoc/no-defaults': string;
3313
+ 'jsdoc/no-missing-syntax': string;
3314
+ 'jsdoc/no-multi-asterisks': string;
3315
+ 'jsdoc/no-restricted-syntax': string;
3316
+ 'jsdoc/no-types': string;
3317
+ 'jsdoc/no-undefined-types': string;
3318
+ 'jsdoc/require-asterisk-prefix': string[];
3319
+ 'jsdoc/require-description': (string | {
3320
+ exemptedBy: string[];
3321
+ })[];
3322
+ 'jsdoc/require-description-complete-sentence': string;
3323
+ 'jsdoc/require-example': string;
3324
+ 'jsdoc/require-file-overview': string;
3325
+ 'jsdoc/require-hyphen-before-param-description': string[];
3326
+ 'jsdoc/require-jsdoc': (string | {
3327
+ contexts: string[];
3328
+ publicOnly: boolean;
3329
+ require: {
3330
+ ArrowFunctionExpression: boolean;
3331
+ ClassDeclaration: boolean;
3332
+ ClassExpression: boolean;
3333
+ FunctionDeclaration: boolean;
3334
+ FunctionExpression: boolean;
3335
+ MethodDefinition: boolean;
3336
+ };
3337
+ })[];
3338
+ 'jsdoc/require-param': (string | {
3339
+ checkDestructured: boolean;
3340
+ checkDestructuredRoots: boolean;
3341
+ checkRestProperty: boolean;
3342
+ enableFixer: boolean;
3343
+ enableRestElementFixer: boolean;
3344
+ enableRootFixer: boolean;
3345
+ unnamedRootBase: string[];
3346
+ useDefaultObjectProperties: boolean;
3347
+ })[];
3348
+ 'jsdoc/require-param-description': string;
3349
+ 'jsdoc/require-param-name': string;
3350
+ 'jsdoc/require-property': string;
3351
+ 'jsdoc/require-property-description': string;
3352
+ 'jsdoc/require-property-name': string;
3353
+ 'jsdoc/require-property-type': string;
3354
+ 'jsdoc/require-returns': string;
3355
+ 'jsdoc/require-returns-check': string;
3356
+ 'jsdoc/require-returns-description': string;
3357
+ 'jsdoc/require-throws': string;
3358
+ 'jsdoc/require-yields': string;
3359
+ 'jsdoc/require-yields-check': string;
3360
+ 'jsdoc/sort-tags': string;
3361
+ 'jsdoc/tag-lines': (string | {
3362
+ startLines: number;
3363
+ })[];
3364
+ 'import/default': number;
3365
+ 'import/dynamic-import-chunkname': (number | {
3366
+ importFunctions: never[];
3367
+ webpackChunknameFormat: string;
3368
+ })[];
3369
+ 'import/export': number;
3370
+ 'import/exports-last': number;
3371
+ 'import/extensions': (string | number | {
3372
+ eot: string;
3373
+ otf: string;
3374
+ ttf: string;
3375
+ woff: string;
3376
+ woff2: string;
3377
+ })[];
3378
+ 'import/first': number;
3379
+ 'import/group-exports': number;
3380
+ 'import/max-dependencies': (number | {
3381
+ ignoreTypeImports: boolean;
3382
+ max: number;
3383
+ })[];
3384
+ 'import/named': number;
3385
+ 'import/namespace': (number | {
3386
+ allowComputed: boolean;
3387
+ })[];
3388
+ 'import/newline-after-import': number;
3389
+ 'import/no-absolute-path': number;
3390
+ 'import/no-amd': number;
3391
+ 'import/no-anonymous-default-export': (number | {
3392
+ allowAnonymousClass: boolean;
3393
+ allowAnonymousFunction: boolean;
3394
+ allowArray: boolean;
3395
+ allowArrowFunction: boolean;
3396
+ allowLiteral: boolean;
3397
+ allowObject: boolean;
3398
+ })[];
3399
+ 'import/no-commonjs': number;
3400
+ 'import/no-cycle': (number | {
3401
+ maxDepth: number;
3402
+ })[];
3403
+ 'import/no-default-export': number;
3404
+ 'import/no-deprecated': number;
3405
+ 'import/no-duplicates': (string | {
3406
+ considerQueryString: boolean;
3407
+ })[];
3408
+ 'import/no-dynamic-require': number;
3409
+ 'import/no-extraneous-dependencies': (number | {
3410
+ devDependencies: string[];
3411
+ optionalDependencies: boolean;
3412
+ })[];
3413
+ 'import/no-internal-modules': (number | {
3414
+ allow: never[];
3415
+ })[];
3416
+ 'import/no-mutable-exports': number;
3417
+ 'import/no-named-as-default': number;
3418
+ 'import/no-named-as-default-member': number;
3419
+ 'import/no-named-default': number;
3420
+ 'import/no-named-export': number;
3421
+ 'import/no-namespace': number;
3422
+ 'import/no-nodejs-modules': number;
3423
+ 'import/no-relative-parent-imports': number;
3424
+ 'import/no-restricted-paths': number;
3425
+ 'import/no-self-import': number;
3426
+ 'import/no-unassigned-import': number;
3427
+ 'import/no-unresolved': (number | {
3428
+ caseSensitive: boolean;
3429
+ commonjs: boolean;
3430
+ ignore: string[];
3431
+ })[];
3432
+ 'import/no-unused-modules': (number | {
3433
+ ignoreExports: never[];
3434
+ missingExports: boolean;
3435
+ unusedExports: boolean;
3436
+ })[];
3437
+ 'import/no-useless-path-segments': (number | {
3438
+ commonjs: boolean;
3439
+ })[];
3440
+ 'import/no-webpack-loader-syntax': number;
3441
+ 'import/order': (number | {
3442
+ alphabetize: {
3443
+ caseInsensitive: boolean;
3444
+ order: string;
3445
+ };
3446
+ groups: string[];
3447
+ 'newlines-between': string;
3448
+ pathGroups: ({
3449
+ group: string;
3450
+ pattern: string;
3451
+ position: string;
3452
+ } | {
3453
+ group: string;
3454
+ pattern: string;
3455
+ position?: undefined;
3456
+ })[];
3457
+ pathGroupsExcludedImportTypes: string[];
3458
+ })[];
3459
+ 'import/prefer-default-export': number;
3460
+ 'import/unambiguous': number;
3461
+ '@emotion/jsx-import': string;
3462
+ '@emotion/no-vanilla': string;
3463
+ '@emotion/styled-import': string;
3464
+ '@emotion/syntax-preference': string[];
3465
+ 'styled-components-order/sort-declarations-alphabetically': string;
3466
+ 'array-func/avoid-reverse': string;
3467
+ 'array-func/from-map': string;
3468
+ 'array-func/no-unnecessary-this-arg': string;
3469
+ 'array-func/prefer-array-from': string;
3470
+ 'array-func/prefer-flat': string;
3471
+ 'array-func/prefer-flat-map': string;
3472
+ strict: string[];
3473
+ 'init-declarations': string;
3474
+ 'no-delete-var': string;
3475
+ 'no-label-var': string;
3476
+ 'no-restricted-globals': string[];
3477
+ 'no-shadow-restricted-names': string;
3478
+ 'no-undef': string;
3479
+ 'no-undef-init': string;
3480
+ 'class-methods-use-this': (string | {
3481
+ exceptMethods: never[];
3482
+ })[];
3483
+ complexity: (string | {
3484
+ max: number;
3485
+ })[];
3486
+ 'max-classes-per-file': (string | number)[];
3487
+ 'no-param-reassign': (string | {
3488
+ ignorePropertyModificationsFor: string[];
3489
+ props: boolean;
3490
+ })[];
3491
+ 'vars-on-top': string;
3492
+ 'arrow-body-style': (string | {
3493
+ requireReturnForObjectLiteral: boolean;
3494
+ })[];
3495
+ 'constructor-super': string;
3496
+ 'no-class-assign': string;
3497
+ 'no-const-assign': string;
3498
+ 'no-new-symbol': string;
3499
+ 'no-restricted-imports': (string | {
3500
+ paths: never[];
3501
+ patterns: never[];
3502
+ })[];
3503
+ 'no-this-before-super': string;
3504
+ 'no-useless-computed-key': string;
3505
+ 'no-useless-rename': (string | {
3506
+ ignoreDestructuring: boolean;
3507
+ ignoreExport: boolean;
3508
+ ignoreImport: boolean;
3509
+ })[];
3510
+ 'no-var': string;
3511
+ 'object-shorthand': (string | {
3512
+ avoidExplicitReturnArrows: boolean;
3513
+ avoidQuotes: boolean;
3514
+ ignoreConstructors: boolean;
3515
+ })[];
3516
+ 'prefer-arrow-callback': (string | {
3517
+ allowNamedFunctions: boolean;
3518
+ allowUnboundThis: boolean;
3519
+ })[];
3520
+ 'prefer-const': (string | {
3521
+ destructuring: string;
3522
+ ignoreReadBeforeAssign: boolean;
3523
+ })[];
3524
+ 'prefer-destructuring': (string | {
3525
+ AssignmentExpression: {
3526
+ array: boolean;
3527
+ object: boolean;
3528
+ };
3529
+ VariableDeclarator: {
3530
+ array: boolean;
3531
+ object: boolean;
3532
+ };
3533
+ enforceForRenamedProperties?: undefined;
3534
+ } | {
3535
+ enforceForRenamedProperties: boolean;
3536
+ AssignmentExpression?: undefined;
3537
+ VariableDeclarator?: undefined;
3538
+ })[];
3539
+ 'prefer-numeric-literals': string;
3540
+ 'prefer-rest-params': string;
3541
+ 'prefer-spread': string;
3542
+ 'prefer-template': string;
3543
+ 'require-yield': string;
3544
+ 'sort-imports': (string | {
3545
+ ignoreCase: boolean;
3546
+ ignoreDeclarationSort: boolean;
3547
+ ignoreMemberSort: boolean;
3548
+ })[];
3549
+ 'symbol-description': string;
3550
+ 'accessor-pairs': (string | {
3551
+ getWithoutSet: boolean;
3552
+ setWithoutGet: boolean;
3553
+ })[];
3554
+ 'array-callback-return': (string | {
3555
+ allowImplicit: boolean;
3556
+ })[];
3557
+ 'block-scoped-var': string;
3558
+ camelcase: (string | {
3559
+ ignoreDestructuring: boolean;
3560
+ properties: string;
3561
+ })[];
3562
+ 'consistent-return': string;
3563
+ 'consistent-this': string[];
3564
+ curly: string[];
3565
+ 'default-case': (string | {
3566
+ commentPattern: string;
3567
+ })[];
3568
+ 'func-name-matching': (string | {
3569
+ considerPropertyDescriptor: boolean;
3570
+ includeCommonJSModuleExports: boolean;
3571
+ })[];
3572
+ 'func-names': string[];
3573
+ 'func-style': string[];
3574
+ 'guard-for-in': string;
3575
+ 'id-denylist': string;
3576
+ 'id-length': string;
3577
+ 'id-match': string;
3578
+ 'max-depth': (string | {
3579
+ max: number;
3580
+ })[];
3581
+ 'max-lines-per-function': (string | {
3582
+ IIFEs: boolean;
3583
+ max: number;
3584
+ skipBlankLines: boolean;
3585
+ skipComments: boolean;
3586
+ })[];
3587
+ 'max-nested-callbacks': string;
3588
+ 'max-statements': (string | {
3589
+ max: number;
3590
+ })[];
3591
+ 'multiline-comment-style': string[];
3592
+ 'new-cap': (string | {
3593
+ capIsNew: boolean;
3594
+ capIsNewExceptions: string[];
3595
+ newIsCap: boolean;
3596
+ newIsCapExceptions: never[];
3597
+ })[];
3598
+ 'no-alert': string;
3599
+ 'no-bitwise': string;
3600
+ 'no-caller': string;
3601
+ 'no-case-declarations': string;
3602
+ 'no-console': string;
3603
+ 'no-constructor-return': string;
3604
+ 'no-continue': string;
3605
+ 'no-div-regex': string;
3606
+ 'no-else-return': (string | {
3607
+ allowElseIf: boolean;
3608
+ })[];
3609
+ 'no-empty-pattern': string;
3610
+ 'no-eq-null': string;
3611
+ 'no-extend-native': string;
3612
+ 'no-extra-bind': string;
3613
+ 'no-extra-label': string;
3614
+ 'no-fallthrough': string;
3615
+ 'no-implicit-coercion': string;
3616
+ 'no-implicit-globals': string;
3617
+ 'no-inline-comments': (string | {
3618
+ ignorePattern: string;
3619
+ })[];
3620
+ 'no-iterator': string;
3621
+ 'no-labels': string;
3622
+ 'no-lone-blocks': string;
3623
+ 'no-lonely-if': string;
3624
+ 'no-multi-assign': string;
3625
+ 'no-multi-str': string;
3626
+ 'no-negated-condition': string;
3627
+ 'no-nested-ternary': string;
3628
+ 'no-new': string;
3629
+ 'no-new-func': string;
3630
+ 'no-new-object': string;
3631
+ 'no-new-wrappers': string;
3632
+ 'no-octal': string;
3633
+ 'no-octal-escape': string;
3634
+ 'no-plusplus': string;
3635
+ 'no-proto': string;
3636
+ 'no-restricted-properties': (string | {
3637
+ message: string;
3638
+ object: string;
3639
+ property: string;
3640
+ } | {
3641
+ message: string;
3642
+ property: string;
3643
+ object?: undefined;
3644
+ })[];
3645
+ 'no-restricted-syntax': (string | {
3646
+ message: string;
3647
+ selector: string;
3648
+ })[];
3649
+ 'no-return-assign': string[];
3650
+ 'no-script-url': string;
3651
+ 'no-sequences': string;
3652
+ 'no-ternary': string;
3653
+ 'no-unneeded-ternary': (string | {
3654
+ defaultAssignment: boolean;
3655
+ })[];
3656
+ 'no-unused-labels': string;
3657
+ 'no-useless-call': string;
3658
+ 'no-useless-concat': string;
3659
+ 'no-useless-escape': string;
3660
+ 'no-useless-return': string;
3661
+ 'no-void': (string | {
3662
+ allowAsStatement: boolean;
3663
+ })[];
3664
+ 'no-warning-comments': (string | {
3665
+ location: string;
3666
+ terms: string[];
3667
+ })[];
3668
+ 'no-with': string;
3669
+ 'one-var': string[];
3670
+ 'operator-assignment': string[];
3671
+ 'prefer-exponentiation-operator': string;
3672
+ 'prefer-named-capture-group': string;
3673
+ 'prefer-object-spread': string;
3674
+ 'prefer-promise-reject-errors': (string | {
3675
+ allowEmptyReject: boolean;
3676
+ })[];
3677
+ 'prefer-regex-literals': string;
3678
+ 'require-await': string;
3679
+ 'require-unicode-regexp': string;
3680
+ 'sort-destructure-keys/sort-destructure-keys': (string | {
3681
+ caseSensitive: boolean;
3682
+ })[];
3683
+ 'sort-vars': string;
3684
+ 'unicode-bom': string[];
3685
+ yoda: string;
3686
+ eqeqeq: string[];
3687
+ 'for-direction': string;
3688
+ 'getter-return': (string | {
3689
+ allowImplicit: boolean;
3690
+ })[];
3691
+ 'no-async-promise-executor': string;
3692
+ 'no-await-in-loop': string;
3693
+ 'no-compare-neg-zero': string;
3694
+ 'no-cond-assign': string;
3695
+ 'no-constant-condition': (string | {
3696
+ checkLoops: boolean;
3697
+ })[];
3698
+ 'no-control-regex': string;
3699
+ 'no-debugger': string;
3700
+ 'no-dupe-args': string;
3701
+ 'no-dupe-else-if': string;
3702
+ 'no-dupe-keys': string;
3703
+ 'no-duplicate-case': string;
3704
+ 'no-empty-character-class': string;
3705
+ 'no-eval': string;
3706
+ 'no-ex-assign': string;
3707
+ 'no-extra-boolean-cast': string;
3708
+ 'no-func-assign': string;
3709
+ 'no-global-assign': string;
3710
+ 'no-import-assign': string;
3711
+ 'no-inner-declarations': string;
3712
+ 'no-invalid-regexp': string;
3713
+ 'no-irregular-whitespace': string;
3714
+ 'no-misleading-character-class': string;
3715
+ 'no-obj-calls': string;
3716
+ 'no-prototype-builtins': string;
3717
+ 'no-regex-spaces': string;
3718
+ 'no-self-assign': (string | {
3719
+ props: boolean;
3720
+ })[];
3721
+ 'no-self-compare': string;
3722
+ 'no-setter-return': string;
3723
+ 'no-sparse-arrays': string;
3724
+ 'no-template-curly-in-string': string;
3725
+ 'no-unexpected-multiline': string;
3726
+ 'no-unmodified-loop-condition': string;
3727
+ 'no-unreachable': string;
3728
+ 'no-unsafe-finally': string;
3729
+ 'no-unsafe-negation': string;
3730
+ 'no-useless-catch': string;
3731
+ radix: string[];
3732
+ 'require-atomic-updates': string;
3733
+ 'use-isnan': string;
3734
+ 'valid-typeof': (string | {
3735
+ requireStringLiterals: boolean;
3736
+ })[];
3737
+ };
2477
3738
  } | {
2478
3739
  files: string[];
2479
3740
  languageOptions: {