@antfu/eslint-config 8.2.0 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -10
- package/dist/cli.mjs +6 -6
- package/dist/index.d.mts +419 -164
- package/dist/index.mjs +27 -56
- package/dist/{lib-UO5evvxw.mjs → lib-C1Uxp5ZW.mjs} +320 -287
- package/package.json +44 -42
package/dist/index.d.mts
CHANGED
|
@@ -454,12 +454,12 @@ interface RuleOptions {
|
|
|
454
454
|
*/
|
|
455
455
|
'angular/use-pipe-transform-interface'?: Linter.RuleEntry<[]>;
|
|
456
456
|
/**
|
|
457
|
-
*
|
|
457
|
+
* Enforce consistent line breaks for chaining member access
|
|
458
458
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-chaining.md
|
|
459
459
|
*/
|
|
460
460
|
'antfu/consistent-chaining'?: Linter.RuleEntry<AntfuConsistentChaining>;
|
|
461
461
|
/**
|
|
462
|
-
*
|
|
462
|
+
* Enforce consistent line breaks inside braces and parentheses
|
|
463
463
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-list-newline.md
|
|
464
464
|
*/
|
|
465
465
|
'antfu/consistent-list-newline'?: Linter.RuleEntry<AntfuConsistentListNewline>;
|
|
@@ -485,22 +485,22 @@ interface RuleOptions {
|
|
|
485
485
|
'antfu/indent-unindent'?: Linter.RuleEntry<AntfuIndentUnindent>;
|
|
486
486
|
/**
|
|
487
487
|
* Prevent importing modules in `dist` folder
|
|
488
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.
|
|
488
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.md
|
|
489
489
|
*/
|
|
490
490
|
'antfu/no-import-dist'?: Linter.RuleEntry<[]>;
|
|
491
491
|
/**
|
|
492
492
|
* Prevent importing modules in `node_modules` folder by relative or absolute path
|
|
493
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.
|
|
493
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.md
|
|
494
494
|
*/
|
|
495
495
|
'antfu/no-import-node-modules-by-path'?: Linter.RuleEntry<[]>;
|
|
496
496
|
/**
|
|
497
497
|
* Prevent using top-level await
|
|
498
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.
|
|
498
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.md
|
|
499
499
|
*/
|
|
500
500
|
'antfu/no-top-level-await'?: Linter.RuleEntry<[]>;
|
|
501
501
|
/**
|
|
502
502
|
* Do not use `exports =`
|
|
503
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.
|
|
503
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.md
|
|
504
504
|
*/
|
|
505
505
|
'antfu/no-ts-export-equal'?: Linter.RuleEntry<[]>;
|
|
506
506
|
/**
|
|
@@ -942,8 +942,7 @@ interface RuleOptions {
|
|
|
942
942
|
*/
|
|
943
943
|
'dot-notation'?: Linter.RuleEntry<DotNotation>;
|
|
944
944
|
/**
|
|
945
|
-
*
|
|
946
|
-
* @see https://github.com/es-tooling/eslint-plugin-depend/blob/main/docs/rules/ban-dependencies.md
|
|
945
|
+
* Disallow dependencies in favor of more performant or secure alternatives
|
|
947
946
|
*/
|
|
948
947
|
'e18e/ban-dependencies'?: Linter.RuleEntry<E18EBanDependencies>;
|
|
949
948
|
/**
|
|
@@ -3743,182 +3742,162 @@ interface RuleOptions {
|
|
|
3743
3742
|
* @see https://eslint.org/docs/latest/rules/radix
|
|
3744
3743
|
*/
|
|
3745
3744
|
'radix'?: Linter.RuleEntry<Radix>;
|
|
3745
|
+
'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>;
|
|
3746
3746
|
/**
|
|
3747
3747
|
* Disallows DOM elements from using 'dangerouslySetInnerHTML'.
|
|
3748
3748
|
* @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
|
|
3749
3749
|
*/
|
|
3750
|
-
'react-
|
|
3750
|
+
'react/dom-no-dangerously-set-innerhtml'?: Linter.RuleEntry<[]>;
|
|
3751
3751
|
/**
|
|
3752
3752
|
* Disallows DOM elements from using 'dangerouslySetInnerHTML' and 'children' at the same time.
|
|
3753
3753
|
* @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml-with-children
|
|
3754
3754
|
*/
|
|
3755
|
-
'react-
|
|
3755
|
+
'react/dom-no-dangerously-set-innerhtml-with-children'?: Linter.RuleEntry<[]>;
|
|
3756
3756
|
/**
|
|
3757
3757
|
* Disallows 'findDOMNode'.
|
|
3758
3758
|
* @see https://eslint-react.xyz/docs/rules/dom-no-find-dom-node
|
|
3759
3759
|
*/
|
|
3760
|
-
'react-
|
|
3760
|
+
'react/dom-no-find-dom-node'?: Linter.RuleEntry<[]>;
|
|
3761
3761
|
/**
|
|
3762
3762
|
* Disallows 'flushSync'.
|
|
3763
3763
|
* @see https://eslint-react.xyz/docs/rules/dom-no-flush-sync
|
|
3764
3764
|
*/
|
|
3765
|
-
'react-
|
|
3765
|
+
'react/dom-no-flush-sync'?: Linter.RuleEntry<[]>;
|
|
3766
3766
|
/**
|
|
3767
3767
|
* Replaces usage of 'ReactDOM.hydrate()' with 'hydrateRoot()'.
|
|
3768
3768
|
* @see https://eslint-react.xyz/docs/rules/dom-no-hydrate
|
|
3769
3769
|
*/
|
|
3770
|
-
'react-
|
|
3770
|
+
'react/dom-no-hydrate'?: Linter.RuleEntry<[]>;
|
|
3771
3771
|
/**
|
|
3772
3772
|
* Enforces an explicit 'type' attribute for 'button' elements.
|
|
3773
3773
|
* @see https://eslint-react.xyz/docs/rules/dom-no-missing-button-type
|
|
3774
3774
|
*/
|
|
3775
|
-
'react-
|
|
3775
|
+
'react/dom-no-missing-button-type'?: Linter.RuleEntry<[]>;
|
|
3776
3776
|
/**
|
|
3777
3777
|
* Enforces an explicit 'sandbox' attribute for 'iframe' elements.
|
|
3778
3778
|
* @see https://eslint-react.xyz/docs/rules/dom-no-missing-iframe-sandbox
|
|
3779
3779
|
*/
|
|
3780
|
-
'react-
|
|
3781
|
-
/**
|
|
3782
|
-
* Enforces the absence of a 'namespace' in React elements.
|
|
3783
|
-
* @see https://eslint-react.xyz/docs/rules/dom-no-namespace
|
|
3784
|
-
*/
|
|
3785
|
-
'react-dom/no-namespace'?: Linter.RuleEntry<[]>;
|
|
3780
|
+
'react/dom-no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>;
|
|
3786
3781
|
/**
|
|
3787
3782
|
* Replaces usage of 'ReactDOM.render()' with 'createRoot(node).render()'.
|
|
3788
3783
|
* @see https://eslint-react.xyz/docs/rules/dom-no-render
|
|
3789
3784
|
*/
|
|
3790
|
-
'react-
|
|
3785
|
+
'react/dom-no-render'?: Linter.RuleEntry<[]>;
|
|
3791
3786
|
/**
|
|
3792
3787
|
* Disallows the return value of 'ReactDOM.render'.
|
|
3793
3788
|
* @see https://eslint-react.xyz/docs/rules/dom-no-render-return-value
|
|
3794
3789
|
*/
|
|
3795
|
-
'react-
|
|
3790
|
+
'react/dom-no-render-return-value'?: Linter.RuleEntry<[]>;
|
|
3796
3791
|
/**
|
|
3797
3792
|
* Disallows 'javascript:' URLs as attribute values.
|
|
3798
3793
|
* @see https://eslint-react.xyz/docs/rules/dom-no-script-url
|
|
3799
3794
|
*/
|
|
3800
|
-
'react-
|
|
3795
|
+
'react/dom-no-script-url'?: Linter.RuleEntry<[]>;
|
|
3801
3796
|
/**
|
|
3802
3797
|
* Disallows the use of string style prop in JSX. Use an object instead.
|
|
3803
3798
|
* @see https://eslint-react.xyz/docs/rules/dom-no-string-style-prop
|
|
3804
3799
|
*/
|
|
3805
|
-
'react-
|
|
3800
|
+
'react/dom-no-string-style-prop'?: Linter.RuleEntry<[]>;
|
|
3806
3801
|
/**
|
|
3807
3802
|
* Disallows unknown 'DOM' properties.
|
|
3808
3803
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unknown-property
|
|
3809
3804
|
*/
|
|
3810
|
-
'react-
|
|
3805
|
+
'react/dom-no-unknown-property'?: Linter.RuleEntry<ReactDomNoUnknownProperty>;
|
|
3811
3806
|
/**
|
|
3812
3807
|
* Enforces that the 'sandbox' attribute for 'iframe' elements is not set to unsafe combinations.
|
|
3813
3808
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-iframe-sandbox
|
|
3814
3809
|
*/
|
|
3815
|
-
'react-
|
|
3810
|
+
'react/dom-no-unsafe-iframe-sandbox'?: Linter.RuleEntry<[]>;
|
|
3816
3811
|
/**
|
|
3817
3812
|
* Disallows 'target="_blank"' without 'rel="noreferrer noopener"'.
|
|
3818
3813
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-target-blank
|
|
3819
3814
|
*/
|
|
3820
|
-
'react-
|
|
3815
|
+
'react/dom-no-unsafe-target-blank'?: Linter.RuleEntry<[]>;
|
|
3821
3816
|
/**
|
|
3822
3817
|
* Replaces usage of 'useFormState' with 'useActionState'.
|
|
3823
3818
|
* @see https://eslint-react.xyz/docs/rules/dom-no-use-form-state
|
|
3824
3819
|
*/
|
|
3825
|
-
'react-
|
|
3820
|
+
'react/dom-no-use-form-state'?: Linter.RuleEntry<[]>;
|
|
3826
3821
|
/**
|
|
3827
3822
|
* Disallows 'children' in void DOM elements.
|
|
3828
3823
|
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
3829
3824
|
*/
|
|
3830
|
-
'react-
|
|
3825
|
+
'react/dom-no-void-elements-with-children'?: Linter.RuleEntry<[]>;
|
|
3831
3826
|
/**
|
|
3832
|
-
*
|
|
3833
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3834
|
-
*/
|
|
3835
|
-
'react-dom/prefer-namespace-import'?: Linter.RuleEntry<[]>;
|
|
3836
|
-
/**
|
|
3837
|
-
* Enforces the context name to be a valid component name with the suffix 'Context'.
|
|
3838
|
-
* @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
|
|
3827
|
+
* Validates usage of Error Boundaries instead of try/catch for errors in child components.
|
|
3828
|
+
* @see https://eslint-react.xyz/docs/rules/error-boundaries
|
|
3839
3829
|
*/
|
|
3840
|
-
'react
|
|
3830
|
+
'react/error-boundaries'?: Linter.RuleEntry<[]>;
|
|
3841
3831
|
/**
|
|
3842
|
-
*
|
|
3843
|
-
* @see https://
|
|
3832
|
+
* Verifies the list of dependencies for Hooks like 'useEffect' and similar.
|
|
3833
|
+
* @see https://github.com/facebook/react/issues/14920
|
|
3844
3834
|
*/
|
|
3845
|
-
'react
|
|
3835
|
+
'react/exhaustive-deps'?: Linter.RuleEntry<ReactExhaustiveDeps>;
|
|
3846
3836
|
/**
|
|
3847
|
-
*
|
|
3848
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3837
|
+
* Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
|
|
3838
|
+
* @see https://eslint-react.xyz/docs/rules/globals
|
|
3849
3839
|
*/
|
|
3850
|
-
'react
|
|
3851
|
-
'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>;
|
|
3840
|
+
'react/globals'?: Linter.RuleEntry<[]>;
|
|
3852
3841
|
/**
|
|
3853
|
-
* Validates and
|
|
3854
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3842
|
+
* Validates against mutating props, state, and other values that are immutable.
|
|
3843
|
+
* @see https://eslint-react.xyz/docs/rules/immutability
|
|
3855
3844
|
*/
|
|
3856
|
-
'react
|
|
3845
|
+
'react/immutability'?: Linter.RuleEntry<[]>;
|
|
3857
3846
|
/**
|
|
3858
|
-
*
|
|
3859
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3847
|
+
* Disallows passing 'children' as a prop.
|
|
3848
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-prop
|
|
3860
3849
|
*/
|
|
3861
|
-
'react-
|
|
3850
|
+
'react/jsx-no-children-prop'?: Linter.RuleEntry<[]>;
|
|
3862
3851
|
/**
|
|
3863
|
-
*
|
|
3864
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3852
|
+
* Disallows passing 'children' as a prop when children are also passed as nested content.
|
|
3853
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-prop-with-children
|
|
3865
3854
|
*/
|
|
3866
|
-
'react-
|
|
3855
|
+
'react/jsx-no-children-prop-with-children'?: Linter.RuleEntry<[]>;
|
|
3867
3856
|
/**
|
|
3868
|
-
*
|
|
3869
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3857
|
+
* Prevents comment strings from being accidentally inserted into a JSX element's text nodes.
|
|
3858
|
+
* @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
|
|
3870
3859
|
*/
|
|
3871
|
-
'react-
|
|
3860
|
+
'react/jsx-no-comment-textnodes'?: Linter.RuleEntry<[]>;
|
|
3872
3861
|
/**
|
|
3873
|
-
*
|
|
3874
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3862
|
+
* Prevent patterns that cause deoptimization when using the automatic JSX runtime.
|
|
3863
|
+
* @see https://eslint-react.xyz/docs/rules/no-key-after-spread
|
|
3875
3864
|
*/
|
|
3876
|
-
'react-
|
|
3865
|
+
'react/jsx-no-key-after-spread'?: Linter.RuleEntry<[]>;
|
|
3877
3866
|
/**
|
|
3878
|
-
*
|
|
3879
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3867
|
+
* Catches `$` before `{expr}` in JSX — typically from template literal `${expr}` being copy-pasted into JSX without removing the `$`. The `$` "leaks" into the rendered output.
|
|
3868
|
+
* @see https://eslint-react.xyz/docs/rules/no-leaked-dollar
|
|
3880
3869
|
*/
|
|
3881
|
-
'react/
|
|
3870
|
+
'react/jsx-no-leaked-dollar'?: Linter.RuleEntry<[]>;
|
|
3882
3871
|
/**
|
|
3883
|
-
*
|
|
3884
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3872
|
+
* Catches `;` at the start of JSX text nodes — typically from accidentally placing a statement-ending `;` inside JSX. The `;` "leaks" into the rendered output.
|
|
3873
|
+
* @see https://eslint-react.xyz/docs/rules/no-leaked-semicolon
|
|
3885
3874
|
*/
|
|
3886
|
-
'react/
|
|
3875
|
+
'react/jsx-no-leaked-semicolon'?: Linter.RuleEntry<[]>;
|
|
3887
3876
|
/**
|
|
3888
|
-
*
|
|
3889
|
-
* @see https://
|
|
3877
|
+
* Disallow JSX namespace syntax, as React does not support them.
|
|
3878
|
+
* @see https://eslint-react.xyz/docs/rules/no-namespace
|
|
3890
3879
|
*/
|
|
3891
|
-
'react/
|
|
3880
|
+
'react/jsx-no-namespace'?: Linter.RuleEntry<[]>;
|
|
3892
3881
|
/**
|
|
3893
|
-
*
|
|
3894
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3895
|
-
*/
|
|
3896
|
-
'react/immutability'?: Linter.RuleEntry<[]>;
|
|
3897
|
-
/**
|
|
3898
|
-
* Prevents unintentional '$' sign before expression.
|
|
3899
|
-
* @see https://eslint-react.xyz/docs/rules/jsx-dollar
|
|
3900
|
-
*/
|
|
3901
|
-
'react/jsx-dollar'?: Linter.RuleEntry<[]>;
|
|
3902
|
-
/**
|
|
3903
|
-
* Enforces 'key' prop placement before spread props.
|
|
3904
|
-
* @see https://eslint-react.xyz/docs/rules/jsx-key-before-spread
|
|
3882
|
+
* Disallows useless fragment elements.
|
|
3883
|
+
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
3905
3884
|
*/
|
|
3906
|
-
'react/jsx-
|
|
3885
|
+
'react/jsx-no-useless-fragment'?: Linter.RuleEntry<ReactJsxNoUselessFragment>;
|
|
3907
3886
|
/**
|
|
3908
|
-
*
|
|
3909
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3887
|
+
* Enforces the context name to be a valid component name with the suffix 'Context'.
|
|
3888
|
+
* @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
|
|
3910
3889
|
*/
|
|
3911
|
-
'react/
|
|
3890
|
+
'react/naming-convention-context-name'?: Linter.RuleEntry<[]>;
|
|
3912
3891
|
/**
|
|
3913
|
-
* Enforces
|
|
3914
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3892
|
+
* Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
|
|
3893
|
+
* @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
|
|
3915
3894
|
*/
|
|
3916
|
-
'react/
|
|
3895
|
+
'react/naming-convention-id-name'?: Linter.RuleEntry<[]>;
|
|
3917
3896
|
/**
|
|
3918
|
-
* Enforces
|
|
3919
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3897
|
+
* Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
|
|
3898
|
+
* @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
|
|
3920
3899
|
*/
|
|
3921
|
-
'react/
|
|
3900
|
+
'react/naming-convention-ref-name'?: Linter.RuleEntry<[]>;
|
|
3922
3901
|
/**
|
|
3923
3902
|
* Disallows accessing 'this.state' inside 'setState' calls.
|
|
3924
3903
|
* @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
|
|
@@ -3949,11 +3928,6 @@ interface RuleOptions {
|
|
|
3949
3928
|
* @see https://eslint-react.xyz/docs/rules/no-children-only
|
|
3950
3929
|
*/
|
|
3951
3930
|
'react/no-children-only'?: Linter.RuleEntry<[]>;
|
|
3952
|
-
/**
|
|
3953
|
-
* Disallows passing 'children' as a prop.
|
|
3954
|
-
* @see https://eslint-react.xyz/docs/rules/no-children-prop
|
|
3955
|
-
*/
|
|
3956
|
-
'react/no-children-prop'?: Linter.RuleEntry<[]>;
|
|
3957
3931
|
/**
|
|
3958
3932
|
* Disallows the use of 'Children.toArray' from the 'react' package.
|
|
3959
3933
|
* @see https://eslint-react.xyz/docs/rules/no-children-to-array
|
|
@@ -4055,15 +4029,10 @@ interface RuleOptions {
|
|
|
4055
4029
|
*/
|
|
4056
4030
|
'react/no-nested-component-definitions'?: Linter.RuleEntry<[]>;
|
|
4057
4031
|
/**
|
|
4058
|
-
* Disallows nesting lazy component declarations inside other components.
|
|
4032
|
+
* Disallows nesting lazy component declarations inside other components or hooks.
|
|
4059
4033
|
* @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
|
|
4060
4034
|
*/
|
|
4061
4035
|
'react/no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
|
|
4062
|
-
/**
|
|
4063
|
-
* Disallows 'shouldComponentUpdate' when extending 'React.PureComponent'.
|
|
4064
|
-
* @see https://eslint-react.xyz/docs/rules/no-redundant-should-component-update
|
|
4065
|
-
*/
|
|
4066
|
-
'react/no-redundant-should-component-update'?: Linter.RuleEntry<[]>;
|
|
4067
4036
|
/**
|
|
4068
4037
|
* Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
|
|
4069
4038
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
|
|
@@ -4079,16 +4048,6 @@ interface RuleOptions {
|
|
|
4079
4048
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
|
|
4080
4049
|
*/
|
|
4081
4050
|
'react/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
|
|
4082
|
-
/**
|
|
4083
|
-
* Disallows unnecessary usage of 'useCallback'.
|
|
4084
|
-
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-callback
|
|
4085
|
-
*/
|
|
4086
|
-
'react/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
|
|
4087
|
-
/**
|
|
4088
|
-
* Disallows unnecessary usage of 'useMemo'.
|
|
4089
|
-
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-memo
|
|
4090
|
-
*/
|
|
4091
|
-
'react/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
|
|
4092
4051
|
/**
|
|
4093
4052
|
* Enforces that a function with the 'use' prefix uses at least one Hook inside it.
|
|
4094
4053
|
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
|
|
@@ -4129,31 +4088,11 @@ interface RuleOptions {
|
|
|
4129
4088
|
* @see https://eslint-react.xyz/docs/rules/no-unused-props
|
|
4130
4089
|
*/
|
|
4131
4090
|
'react/no-unused-props'?: Linter.RuleEntry<[]>;
|
|
4132
|
-
/**
|
|
4133
|
-
* Warns about unused class component state.
|
|
4134
|
-
* @see https://eslint-react.xyz/docs/rules/no-unused-state
|
|
4135
|
-
*/
|
|
4136
|
-
'react/no-unused-state'?: Linter.RuleEntry<[]>;
|
|
4137
4091
|
/**
|
|
4138
4092
|
* Replaces usage of 'useContext' with 'use'.
|
|
4139
4093
|
* @see https://eslint-react.xyz/docs/rules/no-use-context
|
|
4140
4094
|
*/
|
|
4141
4095
|
'react/no-use-context'?: Linter.RuleEntry<[]>;
|
|
4142
|
-
/**
|
|
4143
|
-
* Disallows useless fragment elements.
|
|
4144
|
-
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
4145
|
-
*/
|
|
4146
|
-
'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>;
|
|
4147
|
-
/**
|
|
4148
|
-
* Enforces destructuring assignment for component props and context.
|
|
4149
|
-
* @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
|
|
4150
|
-
*/
|
|
4151
|
-
'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
|
|
4152
|
-
/**
|
|
4153
|
-
* Enforces importing React via a namespace import.
|
|
4154
|
-
* @see https://eslint-react.xyz/docs/rules/prefer-namespace-import
|
|
4155
|
-
*/
|
|
4156
|
-
'react/prefer-namespace-import'?: Linter.RuleEntry<[]>;
|
|
4157
4096
|
/**
|
|
4158
4097
|
* Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
|
|
4159
4098
|
* @see https://eslint-react.xyz/docs/rules/purity
|
|
@@ -4164,6 +4103,11 @@ interface RuleOptions {
|
|
|
4164
4103
|
* @see https://eslint-react.xyz/docs/rules/refs
|
|
4165
4104
|
*/
|
|
4166
4105
|
'react/refs'?: Linter.RuleEntry<[]>;
|
|
4106
|
+
/**
|
|
4107
|
+
* Validates and transforms React Client/Server Function definitions.
|
|
4108
|
+
* @see https://eslint-react.xyz/docs/rules/function-definition
|
|
4109
|
+
*/
|
|
4110
|
+
'react/rsc-function-definition'?: Linter.RuleEntry<[]>;
|
|
4167
4111
|
/**
|
|
4168
4112
|
* Enforces the Rules of Hooks.
|
|
4169
4113
|
* @see https://react.dev/reference/rules/rules-of-hooks
|
|
@@ -4180,15 +4124,10 @@ interface RuleOptions {
|
|
|
4180
4124
|
*/
|
|
4181
4125
|
'react/set-state-in-render'?: Linter.RuleEntry<[]>;
|
|
4182
4126
|
/**
|
|
4183
|
-
*
|
|
4184
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
4127
|
+
* Validates that components are static, not recreated every render.
|
|
4128
|
+
* @see https://eslint-react.xyz/docs/rules/static-components
|
|
4185
4129
|
*/
|
|
4186
|
-
'react/
|
|
4187
|
-
/**
|
|
4188
|
-
* Enforces the Rules of State.
|
|
4189
|
-
* @see https://eslint-react.xyz/docs/rules/unstable-rules-of-state
|
|
4190
|
-
*/
|
|
4191
|
-
'react/unstable-rules-of-state'?: Linter.RuleEntry<[]>;
|
|
4130
|
+
'react/static-components'?: Linter.RuleEntry<[]>;
|
|
4192
4131
|
/**
|
|
4193
4132
|
* Validates against syntax that React Compiler does not support.
|
|
4194
4133
|
* @see https://eslint-react.xyz/docs/rules/unsupported-syntax
|
|
@@ -4204,6 +4143,291 @@ interface RuleOptions {
|
|
|
4204
4143
|
* @see https://eslint-react.xyz/docs/rules/use-state
|
|
4205
4144
|
*/
|
|
4206
4145
|
'react/use-state'?: Linter.RuleEntry<ReactUseState>;
|
|
4146
|
+
/**
|
|
4147
|
+
* Enforces that every 'addEventListener' in a component or custom hook has a corresponding 'removeEventListener'.
|
|
4148
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
|
|
4149
|
+
*/
|
|
4150
|
+
'react/web-api-no-leaked-event-listener'?: Linter.RuleEntry<[]>;
|
|
4151
|
+
/**
|
|
4152
|
+
* Enforces that every 'fetch' in a component or custom hook has a corresponding 'AbortController' abort in the cleanup function.
|
|
4153
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-fetch
|
|
4154
|
+
*/
|
|
4155
|
+
'react/web-api-no-leaked-fetch'?: Linter.RuleEntry<[]>;
|
|
4156
|
+
/**
|
|
4157
|
+
* Enforces that every 'setInterval' in a component or custom hook has a corresponding 'clearInterval'.
|
|
4158
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
|
|
4159
|
+
*/
|
|
4160
|
+
'react/web-api-no-leaked-interval'?: Linter.RuleEntry<[]>;
|
|
4161
|
+
/**
|
|
4162
|
+
* Enforces that every 'ResizeObserver' created in a component or custom hook has a corresponding 'ResizeObserver.disconnect()'.
|
|
4163
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
|
|
4164
|
+
*/
|
|
4165
|
+
'react/web-api-no-leaked-resize-observer'?: Linter.RuleEntry<[]>;
|
|
4166
|
+
/**
|
|
4167
|
+
* Enforces that every 'setTimeout' in a component or custom hook has a corresponding 'clearTimeout'.
|
|
4168
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
|
|
4169
|
+
*/
|
|
4170
|
+
'react/web-api-no-leaked-timeout'?: Linter.RuleEntry<[]>;
|
|
4171
|
+
/**
|
|
4172
|
+
* Validates usage of Error Boundaries instead of try/catch for errors in child components.
|
|
4173
|
+
* @see https://eslint-react.xyz/docs/rules/error-boundaries
|
|
4174
|
+
*/
|
|
4175
|
+
'react/x-error-boundaries'?: Linter.RuleEntry<[]>;
|
|
4176
|
+
/**
|
|
4177
|
+
* Verifies the list of dependencies for Hooks like 'useEffect' and similar.
|
|
4178
|
+
* @see https://github.com/facebook/react/issues/14920
|
|
4179
|
+
*/
|
|
4180
|
+
'react/x-exhaustive-deps'?: Linter.RuleEntry<ReactXExhaustiveDeps>;
|
|
4181
|
+
/**
|
|
4182
|
+
* Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
|
|
4183
|
+
* @see https://eslint-react.xyz/docs/rules/globals
|
|
4184
|
+
*/
|
|
4185
|
+
'react/x-globals'?: Linter.RuleEntry<[]>;
|
|
4186
|
+
/**
|
|
4187
|
+
* Validates against mutating props, state, and other values that are immutable.
|
|
4188
|
+
* @see https://eslint-react.xyz/docs/rules/immutability
|
|
4189
|
+
*/
|
|
4190
|
+
'react/x-immutability'?: Linter.RuleEntry<[]>;
|
|
4191
|
+
/**
|
|
4192
|
+
* Disallows accessing 'this.state' inside 'setState' calls.
|
|
4193
|
+
* @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
|
|
4194
|
+
*/
|
|
4195
|
+
'react/x-no-access-state-in-setstate'?: Linter.RuleEntry<[]>;
|
|
4196
|
+
/**
|
|
4197
|
+
* Disallows using an item's index in the array as its key.
|
|
4198
|
+
* @see https://eslint-react.xyz/docs/rules/no-array-index-key
|
|
4199
|
+
*/
|
|
4200
|
+
'react/x-no-array-index-key'?: Linter.RuleEntry<[]>;
|
|
4201
|
+
/**
|
|
4202
|
+
* Disallows the use of 'Children.count' from the 'react' package.
|
|
4203
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-count
|
|
4204
|
+
*/
|
|
4205
|
+
'react/x-no-children-count'?: Linter.RuleEntry<[]>;
|
|
4206
|
+
/**
|
|
4207
|
+
* Disallows the use of 'Children.forEach' from the 'react' package.
|
|
4208
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-for-each
|
|
4209
|
+
*/
|
|
4210
|
+
'react/x-no-children-for-each'?: Linter.RuleEntry<[]>;
|
|
4211
|
+
/**
|
|
4212
|
+
* Disallows the use of 'Children.map' from the 'react' package.
|
|
4213
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-map
|
|
4214
|
+
*/
|
|
4215
|
+
'react/x-no-children-map'?: Linter.RuleEntry<[]>;
|
|
4216
|
+
/**
|
|
4217
|
+
* Disallows the use of 'Children.only' from the 'react' package.
|
|
4218
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-only
|
|
4219
|
+
*/
|
|
4220
|
+
'react/x-no-children-only'?: Linter.RuleEntry<[]>;
|
|
4221
|
+
/**
|
|
4222
|
+
* Disallows the use of 'Children.toArray' from the 'react' package.
|
|
4223
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-to-array
|
|
4224
|
+
*/
|
|
4225
|
+
'react/x-no-children-to-array'?: Linter.RuleEntry<[]>;
|
|
4226
|
+
/**
|
|
4227
|
+
* Disallows class components except for error boundaries.
|
|
4228
|
+
* @see https://eslint-react.xyz/docs/rules/no-class-component
|
|
4229
|
+
*/
|
|
4230
|
+
'react/x-no-class-component'?: Linter.RuleEntry<[]>;
|
|
4231
|
+
/**
|
|
4232
|
+
* Disallows 'cloneElement'.
|
|
4233
|
+
* @see https://eslint-react.xyz/docs/rules/no-clone-element
|
|
4234
|
+
*/
|
|
4235
|
+
'react/x-no-clone-element'?: Linter.RuleEntry<[]>;
|
|
4236
|
+
/**
|
|
4237
|
+
* Replaces usage of 'componentWillMount' with 'UNSAFE_componentWillMount'.
|
|
4238
|
+
* @see https://eslint-react.xyz/docs/rules/no-component-will-mount
|
|
4239
|
+
*/
|
|
4240
|
+
'react/x-no-component-will-mount'?: Linter.RuleEntry<[]>;
|
|
4241
|
+
/**
|
|
4242
|
+
* Replaces usage of 'componentWillReceiveProps' with 'UNSAFE_componentWillReceiveProps'.
|
|
4243
|
+
* @see https://eslint-react.xyz/docs/rules/no-component-will-receive-props
|
|
4244
|
+
*/
|
|
4245
|
+
'react/x-no-component-will-receive-props'?: Linter.RuleEntry<[]>;
|
|
4246
|
+
/**
|
|
4247
|
+
* Replaces usage of 'componentWillUpdate' with 'UNSAFE_componentWillUpdate'.
|
|
4248
|
+
* @see https://eslint-react.xyz/docs/rules/no-component-will-update
|
|
4249
|
+
*/
|
|
4250
|
+
'react/x-no-component-will-update'?: Linter.RuleEntry<[]>;
|
|
4251
|
+
/**
|
|
4252
|
+
* Replaces usage of '<Context.Provider>' with '<Context>'.
|
|
4253
|
+
* @see https://eslint-react.xyz/docs/rules/no-context-provider
|
|
4254
|
+
*/
|
|
4255
|
+
'react/x-no-context-provider'?: Linter.RuleEntry<[]>;
|
|
4256
|
+
/**
|
|
4257
|
+
* Disallows 'createRef' in function components.
|
|
4258
|
+
* @see https://eslint-react.xyz/docs/rules/no-create-ref
|
|
4259
|
+
*/
|
|
4260
|
+
'react/x-no-create-ref'?: Linter.RuleEntry<[]>;
|
|
4261
|
+
/**
|
|
4262
|
+
* Disallows direct mutation of 'this.state'.
|
|
4263
|
+
* @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
|
|
4264
|
+
*/
|
|
4265
|
+
'react/x-no-direct-mutation-state'?: Linter.RuleEntry<[]>;
|
|
4266
|
+
/**
|
|
4267
|
+
* Prevents duplicate 'key' props on sibling elements when rendering lists.
|
|
4268
|
+
* @see https://eslint-react.xyz/docs/rules/no-duplicate-key
|
|
4269
|
+
*/
|
|
4270
|
+
'react/x-no-duplicate-key'?: Linter.RuleEntry<[]>;
|
|
4271
|
+
/**
|
|
4272
|
+
* Replaces usage of 'forwardRef' with passing 'ref' as a prop.
|
|
4273
|
+
* @see https://eslint-react.xyz/docs/rules/no-forward-ref
|
|
4274
|
+
*/
|
|
4275
|
+
'react/x-no-forward-ref'?: Linter.RuleEntry<[]>;
|
|
4276
|
+
/**
|
|
4277
|
+
* Prevents implicitly passing the 'children' prop to components.
|
|
4278
|
+
* @see https://eslint-react.xyz/docs/rules/no-implicit-children
|
|
4279
|
+
*/
|
|
4280
|
+
'react/x-no-implicit-children'?: Linter.RuleEntry<[]>;
|
|
4281
|
+
/**
|
|
4282
|
+
* Prevents implicitly passing the 'key' prop to components.
|
|
4283
|
+
* @see https://eslint-react.xyz/docs/rules/no-implicit-key
|
|
4284
|
+
*/
|
|
4285
|
+
'react/x-no-implicit-key'?: Linter.RuleEntry<[]>;
|
|
4286
|
+
/**
|
|
4287
|
+
* Prevents implicitly passing the 'ref' prop to components.
|
|
4288
|
+
* @see https://eslint-react.xyz/docs/rules/no-implicit-ref
|
|
4289
|
+
*/
|
|
4290
|
+
'react/x-no-implicit-ref'?: Linter.RuleEntry<[]>;
|
|
4291
|
+
/**
|
|
4292
|
+
* Prevents problematic leaked values from being rendered.
|
|
4293
|
+
* @see https://eslint-react.xyz/docs/rules/no-leaked-conditional-rendering
|
|
4294
|
+
*/
|
|
4295
|
+
'react/x-no-leaked-conditional-rendering'?: Linter.RuleEntry<[]>;
|
|
4296
|
+
/**
|
|
4297
|
+
* Enforces that all components have a 'displayName' that can be used in DevTools.
|
|
4298
|
+
* @see https://eslint-react.xyz/docs/rules/no-missing-component-display-name
|
|
4299
|
+
*/
|
|
4300
|
+
'react/x-no-missing-component-display-name'?: Linter.RuleEntry<[]>;
|
|
4301
|
+
/**
|
|
4302
|
+
* Enforces that all contexts have a 'displayName' that can be used in DevTools.
|
|
4303
|
+
* @see https://eslint-react.xyz/docs/rules/no-missing-context-display-name
|
|
4304
|
+
*/
|
|
4305
|
+
'react/x-no-missing-context-display-name'?: Linter.RuleEntry<[]>;
|
|
4306
|
+
/**
|
|
4307
|
+
* Disallows missing 'key' on items in list rendering.
|
|
4308
|
+
* @see https://eslint-react.xyz/docs/rules/no-missing-key
|
|
4309
|
+
*/
|
|
4310
|
+
'react/x-no-missing-key'?: Linter.RuleEntry<[]>;
|
|
4311
|
+
/**
|
|
4312
|
+
* Prevents incorrect usage of 'captureOwnerStack'.
|
|
4313
|
+
* @see https://eslint-react.xyz/docs/rules/no-misused-capture-owner-stack
|
|
4314
|
+
*/
|
|
4315
|
+
'react/x-no-misused-capture-owner-stack'?: Linter.RuleEntry<[]>;
|
|
4316
|
+
/**
|
|
4317
|
+
* Disallows nesting component definitions inside other components.
|
|
4318
|
+
* @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
|
|
4319
|
+
*/
|
|
4320
|
+
'react/x-no-nested-component-definitions'?: Linter.RuleEntry<[]>;
|
|
4321
|
+
/**
|
|
4322
|
+
* Disallows nesting lazy component declarations inside other components or hooks.
|
|
4323
|
+
* @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
|
|
4324
|
+
*/
|
|
4325
|
+
'react/x-no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
|
|
4326
|
+
/**
|
|
4327
|
+
* Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
|
|
4328
|
+
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
|
|
4329
|
+
*/
|
|
4330
|
+
'react/x-no-set-state-in-component-did-mount'?: Linter.RuleEntry<[]>;
|
|
4331
|
+
/**
|
|
4332
|
+
* Disallows calling 'this.setState' in 'componentDidUpdate' outside functions such as callbacks.
|
|
4333
|
+
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-update
|
|
4334
|
+
*/
|
|
4335
|
+
'react/x-no-set-state-in-component-did-update'?: Linter.RuleEntry<[]>;
|
|
4336
|
+
/**
|
|
4337
|
+
* Disallows calling 'this.setState' in 'componentWillUpdate' outside functions such as callbacks.
|
|
4338
|
+
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
|
|
4339
|
+
*/
|
|
4340
|
+
'react/x-no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
|
|
4341
|
+
/**
|
|
4342
|
+
* Enforces that a function with the 'use' prefix uses at least one Hook inside it.
|
|
4343
|
+
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
|
|
4344
|
+
*/
|
|
4345
|
+
'react/x-no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>;
|
|
4346
|
+
/**
|
|
4347
|
+
* Warns about the use of 'UNSAFE_componentWillMount' in class components.
|
|
4348
|
+
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-mount
|
|
4349
|
+
*/
|
|
4350
|
+
'react/x-no-unsafe-component-will-mount'?: Linter.RuleEntry<[]>;
|
|
4351
|
+
/**
|
|
4352
|
+
* Warns about the use of 'UNSAFE_componentWillReceiveProps' in class components.
|
|
4353
|
+
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-receive-props
|
|
4354
|
+
*/
|
|
4355
|
+
'react/x-no-unsafe-component-will-receive-props'?: Linter.RuleEntry<[]>;
|
|
4356
|
+
/**
|
|
4357
|
+
* Warns about the use of 'UNSAFE_componentWillUpdate' in class components.
|
|
4358
|
+
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-update
|
|
4359
|
+
*/
|
|
4360
|
+
'react/x-no-unsafe-component-will-update'?: Linter.RuleEntry<[]>;
|
|
4361
|
+
/**
|
|
4362
|
+
* Prevents non-stable values (i.e., object literals) from being used as a value for 'Context.Provider'.
|
|
4363
|
+
* @see https://eslint-react.xyz/docs/rules/no-unstable-context-value
|
|
4364
|
+
*/
|
|
4365
|
+
'react/x-no-unstable-context-value'?: Linter.RuleEntry<[]>;
|
|
4366
|
+
/**
|
|
4367
|
+
* Prevents using referential-type values as default props in object destructuring.
|
|
4368
|
+
* @see https://eslint-react.xyz/docs/rules/no-unstable-default-props
|
|
4369
|
+
*/
|
|
4370
|
+
'react/x-no-unstable-default-props'?: Linter.RuleEntry<ReactXNoUnstableDefaultProps>;
|
|
4371
|
+
/**
|
|
4372
|
+
* Warns about unused class component methods and properties.
|
|
4373
|
+
* @see https://eslint-react.xyz/docs/rules/no-unused-class-component-members
|
|
4374
|
+
*/
|
|
4375
|
+
'react/x-no-unused-class-component-members'?: Linter.RuleEntry<[]>;
|
|
4376
|
+
/**
|
|
4377
|
+
* Warns about component props that are defined but never used.
|
|
4378
|
+
* @see https://eslint-react.xyz/docs/rules/no-unused-props
|
|
4379
|
+
*/
|
|
4380
|
+
'react/x-no-unused-props'?: Linter.RuleEntry<[]>;
|
|
4381
|
+
/**
|
|
4382
|
+
* Replaces usage of 'useContext' with 'use'.
|
|
4383
|
+
* @see https://eslint-react.xyz/docs/rules/no-use-context
|
|
4384
|
+
*/
|
|
4385
|
+
'react/x-no-use-context'?: Linter.RuleEntry<[]>;
|
|
4386
|
+
/**
|
|
4387
|
+
* Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
|
|
4388
|
+
* @see https://eslint-react.xyz/docs/rules/purity
|
|
4389
|
+
*/
|
|
4390
|
+
'react/x-purity'?: Linter.RuleEntry<[]>;
|
|
4391
|
+
/**
|
|
4392
|
+
* Validates correct usage of refs by checking that 'ref.current' is not read or written during render.
|
|
4393
|
+
* @see https://eslint-react.xyz/docs/rules/refs
|
|
4394
|
+
*/
|
|
4395
|
+
'react/x-refs'?: Linter.RuleEntry<[]>;
|
|
4396
|
+
/**
|
|
4397
|
+
* Enforces the Rules of Hooks.
|
|
4398
|
+
* @see https://react.dev/reference/rules/rules-of-hooks
|
|
4399
|
+
*/
|
|
4400
|
+
'react/x-rules-of-hooks'?: Linter.RuleEntry<ReactXRulesOfHooks>;
|
|
4401
|
+
/**
|
|
4402
|
+
* Validates against setting state synchronously in an effect, which can lead to re-renders that degrade performance.
|
|
4403
|
+
* @see https://eslint-react.xyz/docs/rules/set-state-in-effect
|
|
4404
|
+
*/
|
|
4405
|
+
'react/x-set-state-in-effect'?: Linter.RuleEntry<[]>;
|
|
4406
|
+
/**
|
|
4407
|
+
* Validates against unconditionally setting state during render, which can trigger additional renders and potential infinite render loops.
|
|
4408
|
+
* @see https://eslint-react.xyz/docs/rules/set-state-in-render
|
|
4409
|
+
*/
|
|
4410
|
+
'react/x-set-state-in-render'?: Linter.RuleEntry<[]>;
|
|
4411
|
+
/**
|
|
4412
|
+
* Validates that components are static, not recreated every render.
|
|
4413
|
+
* @see https://eslint-react.xyz/docs/rules/static-components
|
|
4414
|
+
*/
|
|
4415
|
+
'react/x-static-components'?: Linter.RuleEntry<[]>;
|
|
4416
|
+
/**
|
|
4417
|
+
* Validates against syntax that React Compiler does not support.
|
|
4418
|
+
* @see https://eslint-react.xyz/docs/rules/unsupported-syntax
|
|
4419
|
+
*/
|
|
4420
|
+
'react/x-unsupported-syntax'?: Linter.RuleEntry<[]>;
|
|
4421
|
+
/**
|
|
4422
|
+
* Validates that 'useMemo' is called with a callback that returns a value.
|
|
4423
|
+
* @see https://eslint-react.xyz/docs/rules/use-memo
|
|
4424
|
+
*/
|
|
4425
|
+
'react/x-use-memo'?: Linter.RuleEntry<[]>;
|
|
4426
|
+
/**
|
|
4427
|
+
* Enforces correct usage of 'useState', including destructuring, symmetric naming of the value and setter, and wrapping expensive initializers in a lazy initializer function.
|
|
4428
|
+
* @see https://eslint-react.xyz/docs/rules/use-state
|
|
4429
|
+
*/
|
|
4430
|
+
'react/x-use-state'?: Linter.RuleEntry<ReactXUseState>;
|
|
4207
4431
|
/**
|
|
4208
4432
|
* disallow confusing quantifiers
|
|
4209
4433
|
* @see https://ota-meshi.github.io/eslint-plugin-regexp/rules/confusing-quantifier.html
|
|
@@ -5852,7 +6076,7 @@ interface RuleOptions {
|
|
|
5852
6076
|
*/
|
|
5853
6077
|
'test/no-mocks-import'?: Linter.RuleEntry<[]>;
|
|
5854
6078
|
/**
|
|
5855
|
-
* disallow
|
|
6079
|
+
* disallow focused/only tests
|
|
5856
6080
|
* @see https://github.com/levibuzolic/eslint-plugin-no-only-tests
|
|
5857
6081
|
*/
|
|
5858
6082
|
'test/no-only-tests'?: Linter.RuleEntry<TestNoOnlyTests>;
|
|
@@ -5977,7 +6201,7 @@ interface RuleOptions {
|
|
|
5977
6201
|
*/
|
|
5978
6202
|
'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
|
|
5979
6203
|
/**
|
|
5980
|
-
* enforce using `
|
|
6204
|
+
* enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof ...).toBe(...)`
|
|
5981
6205
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
|
|
5982
6206
|
*/
|
|
5983
6207
|
'test/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
|
|
@@ -8344,7 +8568,7 @@ interface RuleOptions {
|
|
|
8344
8568
|
* disallow object, array, and function literals in template
|
|
8345
8569
|
* @see https://eslint.vuejs.org/rules/no-literals-in-template.html
|
|
8346
8570
|
*/
|
|
8347
|
-
'vue/no-literals-in-template'?: Linter.RuleEntry<
|
|
8571
|
+
'vue/no-literals-in-template'?: Linter.RuleEntry<VueNoLiteralsInTemplate>;
|
|
8348
8572
|
/**
|
|
8349
8573
|
* disallow unnecessary `<template>`
|
|
8350
8574
|
* @see https://eslint.vuejs.org/rules/no-lone-template.html
|
|
@@ -8737,6 +8961,11 @@ interface RuleOptions {
|
|
|
8737
8961
|
* @see https://eslint.vuejs.org/rules/prefer-separate-static-class.html
|
|
8738
8962
|
*/
|
|
8739
8963
|
'vue/prefer-separate-static-class'?: Linter.RuleEntry<[]>;
|
|
8964
|
+
/**
|
|
8965
|
+
* enforce passing a single argument to custom event emissions
|
|
8966
|
+
* @see https://eslint.vuejs.org/rules/prefer-single-event-payload.html
|
|
8967
|
+
*/
|
|
8968
|
+
'vue/prefer-single-event-payload'?: Linter.RuleEntry<[]>;
|
|
8740
8969
|
/**
|
|
8741
8970
|
* Require template literals instead of string concatenation in `<template>`
|
|
8742
8971
|
* @see https://eslint.vuejs.org/rules/prefer-template.html
|
|
@@ -8752,6 +8981,11 @@ interface RuleOptions {
|
|
|
8752
8981
|
* @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
|
|
8753
8982
|
*/
|
|
8754
8983
|
'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>;
|
|
8984
|
+
/**
|
|
8985
|
+
* enforce using `v-model` instead of `:prop`/`@update:prop` pair
|
|
8986
|
+
* @see https://eslint.vuejs.org/rules/prefer-v-model.html
|
|
8987
|
+
*/
|
|
8988
|
+
'vue/prefer-v-model'?: Linter.RuleEntry<[]>;
|
|
8755
8989
|
/**
|
|
8756
8990
|
* enforce specific casing for the Prop name in Vue components
|
|
8757
8991
|
* @see https://eslint.vuejs.org/rules/prop-name-casing.html
|
|
@@ -11820,7 +12054,6 @@ type NodeNoUnpublishedBin = [] | [{
|
|
|
11820
12054
|
exclude?: string[];
|
|
11821
12055
|
replace: [string, string];
|
|
11822
12056
|
})[]]);
|
|
11823
|
-
[k: string]: unknown | undefined;
|
|
11824
12057
|
}]; // ----- node/no-unpublished-import -----
|
|
11825
12058
|
type NodeNoUnpublishedImport = [] | [{
|
|
11826
12059
|
allowModules?: string[];
|
|
@@ -11874,7 +12107,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
|
|
|
11874
12107
|
type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
|
|
11875
12108
|
version?: string;
|
|
11876
12109
|
allowExperimental?: boolean;
|
|
11877
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
|
|
12110
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.locks" | "navigator.locks.request" | "navigator.locks.query" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decapsulateBits" | "crypto.subtle.decapsulateKey" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encapsulateBits" | "crypto.subtle.encapsulateKey" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.getPublicKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "SubtleCrypto.supports" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decapsulateBits" | "crypto.webcrypto.subtle.decapsulateKey" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encapsulateBits" | "crypto.webcrypto.subtle.encapsulateKey" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.getPublicKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.argon2" | "crypto.argon2Sync" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.decapsulate" | "crypto.diffieHellman" | "crypto.encapsulate" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.mkdtempDisposable" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.mkdtempDisposableSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.Utf8Stream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.mkdtempDisposable" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent()" | "http.Agent" | "http.ClientRequest()" | "http.ClientRequest" | "http.Server()" | "http.Server" | "http.ServerResponse()" | "http.ServerResponse" | "http.IncomingMessage()" | "http.IncomingMessage" | "http.OutgoingMessage()" | "http.OutgoingMessage" | "http.WebSocket()" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.webSocketCreated" | "inspector.Network.webSocketHandshakeResponseReceived" | "inspector.Network.webSocketClosed" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.Network.webSocketCreated" | "inspector/promises.Network.webSocketHandshakeResponseReceived" | "inspector/promises.Network.webSocketClosed" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.eventLoopUtilization" | "perf_hooks.timerify" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getAssetKeys" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getAssetKeys" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "_stream_duplex" | "_stream_passthrough" | "_stream_readable" | "_stream_transform" | "_stream_wrap" | "_stream_writable" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.Session" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.property" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "_tls_common" | "_tls_wrap" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "v8.startCpuProfile" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.threadName" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.locks" | "worker_threads.locks.request" | "worker_threads.locks.query" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
|
|
11878
12111
|
}]; // ----- node/prefer-global/buffer -----
|
|
11879
12112
|
type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
|
|
11880
12113
|
type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
|
|
@@ -12333,6 +12566,7 @@ type PerfectionistSortClasses = {
|
|
|
12333
12566
|
matchesAstSelector?: string;
|
|
12334
12567
|
};
|
|
12335
12568
|
useExperimentalDependencyDetection?: boolean;
|
|
12569
|
+
newlinesBetweenOverloadSignatures?: ("ignore" | number);
|
|
12336
12570
|
ignoreCallbackDependenciesPatterns?: (({
|
|
12337
12571
|
pattern: string;
|
|
12338
12572
|
flags?: string;
|
|
@@ -13696,6 +13930,7 @@ type PerfectionistSortModules = [] | [{
|
|
|
13696
13930
|
})[];
|
|
13697
13931
|
newlinesBetween?: ("ignore" | number);
|
|
13698
13932
|
useExperimentalDependencyDetection?: boolean;
|
|
13933
|
+
newlinesBetweenOverloadSignatures?: ("ignore" | number);
|
|
13699
13934
|
partitionByComment?: (boolean | (({
|
|
13700
13935
|
pattern: string;
|
|
13701
13936
|
flags?: string;
|
|
@@ -14685,31 +14920,29 @@ type Quotes = [] | [("single" | "double" | "backtick")] | [("single" | "double"
|
|
|
14685
14920
|
avoidEscape?: boolean;
|
|
14686
14921
|
allowTemplateLiterals?: boolean;
|
|
14687
14922
|
})]; // ----- radix -----
|
|
14688
|
-
type Radix = [] | [("always" | "as-needed")]; // ----- react-
|
|
14689
|
-
type ReactDomNoUnknownProperty = [] | [{
|
|
14690
|
-
ignore?: string[];
|
|
14691
|
-
requireDataLowercase?: boolean;
|
|
14692
|
-
}]; // ----- react-refresh/only-export-components -----
|
|
14923
|
+
type Radix = [] | [("always" | "as-needed")]; // ----- react-refresh/only-export-components -----
|
|
14693
14924
|
type ReactRefreshOnlyExportComponents = [] | [{
|
|
14694
14925
|
extraHOCs?: string[];
|
|
14695
14926
|
allowExportNames?: string[];
|
|
14696
14927
|
allowConstantExport?: boolean;
|
|
14697
14928
|
checkJS?: boolean;
|
|
14929
|
+
}]; // ----- react/dom-no-unknown-property -----
|
|
14930
|
+
type ReactDomNoUnknownProperty = [] | [{
|
|
14931
|
+
ignore?: string[];
|
|
14932
|
+
requireDataLowercase?: boolean;
|
|
14698
14933
|
}]; // ----- react/exhaustive-deps -----
|
|
14699
14934
|
type ReactExhaustiveDeps = [] | [{
|
|
14700
14935
|
additionalHooks?: string;
|
|
14701
14936
|
enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
|
|
14702
14937
|
experimental_autoDependenciesHooks?: string[];
|
|
14703
14938
|
requireExplicitEffectDeps?: boolean;
|
|
14704
|
-
}]; // ----- react/jsx-
|
|
14705
|
-
type
|
|
14706
|
-
type ReactJsxShorthandFragment = [] | [(-1 | 1)]; // ----- react/no-unstable-default-props -----
|
|
14707
|
-
type ReactNoUnstableDefaultProps = [] | [{
|
|
14708
|
-
safeDefaultProps?: string[];
|
|
14709
|
-
}]; // ----- react/no-useless-fragment -----
|
|
14710
|
-
type ReactNoUselessFragment = [] | [{
|
|
14939
|
+
}]; // ----- react/jsx-no-useless-fragment -----
|
|
14940
|
+
type ReactJsxNoUselessFragment = [] | [{
|
|
14711
14941
|
allowEmptyFragment?: boolean;
|
|
14712
14942
|
allowExpressions?: boolean;
|
|
14943
|
+
}]; // ----- react/no-unstable-default-props -----
|
|
14944
|
+
type ReactNoUnstableDefaultProps = [] | [{
|
|
14945
|
+
safeDefaultProps?: string[];
|
|
14713
14946
|
}]; // ----- react/rules-of-hooks -----
|
|
14714
14947
|
type ReactRulesOfHooks = [] | [{
|
|
14715
14948
|
additionalHooks?: string;
|
|
@@ -14718,6 +14951,23 @@ type ReactUseState = [] | [{
|
|
|
14718
14951
|
enforceAssignment?: boolean;
|
|
14719
14952
|
enforceLazyInitialization?: boolean;
|
|
14720
14953
|
enforceSetterName?: boolean;
|
|
14954
|
+
}]; // ----- react/x-exhaustive-deps -----
|
|
14955
|
+
type ReactXExhaustiveDeps = [] | [{
|
|
14956
|
+
additionalHooks?: string;
|
|
14957
|
+
enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
|
|
14958
|
+
experimental_autoDependenciesHooks?: string[];
|
|
14959
|
+
requireExplicitEffectDeps?: boolean;
|
|
14960
|
+
}]; // ----- react/x-no-unstable-default-props -----
|
|
14961
|
+
type ReactXNoUnstableDefaultProps = [] | [{
|
|
14962
|
+
safeDefaultProps?: string[];
|
|
14963
|
+
}]; // ----- react/x-rules-of-hooks -----
|
|
14964
|
+
type ReactXRulesOfHooks = [] | [{
|
|
14965
|
+
additionalHooks?: string;
|
|
14966
|
+
}]; // ----- react/x-use-state -----
|
|
14967
|
+
type ReactXUseState = [] | [{
|
|
14968
|
+
enforceAssignment?: boolean;
|
|
14969
|
+
enforceLazyInitialization?: boolean;
|
|
14970
|
+
enforceSetterName?: boolean;
|
|
14721
14971
|
}]; // ----- regexp/hexadecimal-escape -----
|
|
14722
14972
|
type RegexpHexadecimalEscape = [] | [("always" | "never")]; // ----- regexp/letter-case -----
|
|
14723
14973
|
type RegexpLetterCase = [] | [{
|
|
@@ -18384,6 +18634,9 @@ type VueNoIrregularWhitespace = [] | [{
|
|
|
18384
18634
|
skipRegExps?: boolean;
|
|
18385
18635
|
skipHTMLAttributeValues?: boolean;
|
|
18386
18636
|
skipHTMLTextContents?: boolean;
|
|
18637
|
+
}]; // ----- vue/no-literals-in-template -----
|
|
18638
|
+
type VueNoLiteralsInTemplate = [] | [{
|
|
18639
|
+
ignores?: string[];
|
|
18387
18640
|
}]; // ----- vue/no-lone-template -----
|
|
18388
18641
|
type VueNoLoneTemplate = [] | [{
|
|
18389
18642
|
ignoreAccessible?: boolean;
|
|
@@ -18538,7 +18791,7 @@ type VueNoUnusedComponents = [] | [{
|
|
|
18538
18791
|
ignoreWhenBindingPresent?: boolean;
|
|
18539
18792
|
}]; // ----- vue/no-unused-properties -----
|
|
18540
18793
|
type VueNoUnusedProperties = [] | [{
|
|
18541
|
-
groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup")[];
|
|
18794
|
+
groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup" | "inject")[];
|
|
18542
18795
|
deepData?: boolean;
|
|
18543
18796
|
ignorePublicMembers?: boolean;
|
|
18544
18797
|
unreferencedOptions?: ("unknownMemberAsUnreferenced" | "returnAsUnreferenced")[];
|
|
@@ -18935,7 +19188,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
|
|
|
18935
19188
|
exceptRange?: boolean;
|
|
18936
19189
|
onlyEquality?: boolean;
|
|
18937
19190
|
}]; // Names of all the configs
|
|
18938
|
-
type ConfigNames = 'antfu/gitignore' | 'antfu/ignores' | 'antfu/javascript/setup' | 'antfu/javascript/rules' | 'antfu/eslint-comments/rules' | 'antfu/command/rules' | 'antfu/perfectionist/setup' | 'antfu/node/setup' | 'antfu/node/rules' | 'antfu/jsdoc/setup' | 'antfu/jsdoc/rules' | 'antfu/imports/rules' | 'antfu/e18e/rules' | 'antfu/unicorn/rules' | 'antfu/jsx/setup' | 'antfu/typescript/setup' | 'antfu/typescript/parser' | 'antfu/typescript/type-aware-parser' | 'antfu/typescript/rules' | 'antfu/typescript/rules-type-aware' | 'antfu/typescript/erasable-syntax-only' | 'antfu/stylistic/rules' | 'antfu/regexp/rules' | 'antfu/test/setup' | 'antfu/test/rules' | 'antfu/vue/setup' | 'antfu/vue/rules' | 'antfu/react/setup' | 'antfu/react/rules' | 'antfu/react/typescript' | 'antfu/react/type-aware-rules' | 'antfu/nextjs/setup' | 'antfu/nextjs/rules' | 'antfu/solid/setup' | 'antfu/solid/rules' | 'antfu/svelte/setup' | 'antfu/svelte/rules' | 'antfu/unocss' | 'antfu/astro/setup' | 'antfu/astro/rules' | 'antfu/angular/setup' | 'antfu/angular/rules/ts' | 'antfu/angular/rules/template' | 'antfu/jsonc/setup' | 'antfu/jsonc/rules' | 'antfu/sort/package-json' | 'antfu/sort/tsconfig-json' | 'antfu/pnpm/package-json' | 'antfu/pnpm/pnpm-workspace-yaml' | 'antfu/pnpm/pnpm-workspace-yaml-sort' | 'antfu/yaml/setup' | 'antfu/yaml/rules' | 'antfu/toml/setup' | 'antfu/toml/rules' | 'antfu/markdown/setup' | 'antfu/markdown/processor' | 'antfu/markdown/parser' | 'antfu/markdown/rules' | 'antfu/markdown/disables/
|
|
19191
|
+
type ConfigNames = 'antfu/gitignore' | 'antfu/ignores' | 'antfu/javascript/setup' | 'antfu/javascript/rules' | 'antfu/eslint-comments/rules' | 'antfu/command/rules' | 'antfu/perfectionist/setup' | 'antfu/node/setup' | 'antfu/node/rules' | 'antfu/jsdoc/setup' | 'antfu/jsdoc/rules' | 'antfu/imports/rules' | 'antfu/e18e/rules' | 'antfu/unicorn/rules' | 'antfu/jsx/setup' | 'antfu/typescript/setup' | 'antfu/typescript/parser' | 'antfu/typescript/type-aware-parser' | 'antfu/typescript/rules' | 'antfu/typescript/rules-type-aware' | 'antfu/typescript/erasable-syntax-only' | 'antfu/stylistic/rules' | 'antfu/regexp/rules' | 'antfu/test/setup' | 'antfu/test/rules' | 'antfu/vue/setup' | 'antfu/vue/rules' | 'antfu/react/setup' | 'antfu/react/rules' | 'antfu/react/typescript' | 'antfu/react/type-aware-rules' | 'antfu/nextjs/setup' | 'antfu/nextjs/rules' | 'antfu/solid/setup' | 'antfu/solid/rules' | 'antfu/svelte/setup' | 'antfu/svelte/rules' | 'antfu/unocss' | 'antfu/astro/setup' | 'antfu/astro/rules' | 'antfu/angular/setup' | 'antfu/angular/rules/ts' | 'antfu/angular/rules/template' | 'antfu/jsonc/setup' | 'antfu/jsonc/rules' | 'antfu/sort/package-json' | 'antfu/sort/tsconfig-json' | 'antfu/pnpm/package-json' | 'antfu/pnpm/pnpm-workspace-yaml' | 'antfu/pnpm/pnpm-workspace-yaml-sort' | 'antfu/yaml/setup' | 'antfu/yaml/rules' | 'antfu/toml/setup' | 'antfu/toml/rules' | 'antfu/markdown/setup' | 'antfu/markdown/processor' | 'antfu/markdown/parser' | 'antfu/markdown/rules' | 'antfu/markdown/disables/code' | 'antfu/formatter/setup' | 'antfu/formatter/css' | 'antfu/formatter/scss' | 'antfu/formatter/less' | 'antfu/formatter/html' | 'antfu/formatter/xml' | 'antfu/formatter/svg' | 'antfu/formatter/markdown' | 'antfu/formatter/astro' | 'antfu/formatter/astro/disables' | 'antfu/formatter/graphql' | 'antfu/disables/scripts' | 'antfu/disables/cli' | 'antfu/disables/bin' | 'antfu/disables/dts' | 'antfu/disables/cjs' | 'antfu/disables/config-files';
|
|
18939
19192
|
//#endregion
|
|
18940
19193
|
//#region src/vender/prettier-types.d.ts
|
|
18941
19194
|
/**
|
|
@@ -19270,7 +19523,7 @@ interface OptionsHasTypeScript {
|
|
|
19270
19523
|
interface OptionsStylistic {
|
|
19271
19524
|
stylistic?: boolean | StylisticConfig;
|
|
19272
19525
|
}
|
|
19273
|
-
interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi' | 'experimental'> {}
|
|
19526
|
+
interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi' | 'braceStyle' | 'experimental'> {}
|
|
19274
19527
|
interface OptionsOverrides {
|
|
19275
19528
|
overrides?: TypedFlatConfigItem['rules'];
|
|
19276
19529
|
}
|
|
@@ -19412,6 +19665,12 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
19412
19665
|
* @default true
|
|
19413
19666
|
*/
|
|
19414
19667
|
unicorn?: boolean | OptionsUnicorn;
|
|
19668
|
+
/**
|
|
19669
|
+
* Options for eslint-plugin-perfectionist.
|
|
19670
|
+
*
|
|
19671
|
+
* @default true
|
|
19672
|
+
*/
|
|
19673
|
+
perfectionist?: boolean | OptionsOverrides;
|
|
19415
19674
|
/**
|
|
19416
19675
|
* Options for eslint-plugin-import-lite.
|
|
19417
19676
|
*
|
|
@@ -19595,10 +19854,6 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
19595
19854
|
//#region src/factory.d.ts
|
|
19596
19855
|
declare const defaultPluginRenaming: {
|
|
19597
19856
|
'@eslint-react': string;
|
|
19598
|
-
'@eslint-react/dom': string;
|
|
19599
|
-
'@eslint-react/naming-convention': string;
|
|
19600
|
-
'@eslint-react/rsc': string;
|
|
19601
|
-
'@eslint-react/web-api': string;
|
|
19602
19857
|
'@next/next': string;
|
|
19603
19858
|
'@stylistic': string;
|
|
19604
19859
|
'@typescript-eslint': string;
|
|
@@ -19677,7 +19932,7 @@ declare function node(): Promise<TypedFlatConfigItem[]>;
|
|
|
19677
19932
|
*
|
|
19678
19933
|
* @see https://github.com/azat-io/eslint-plugin-perfectionist
|
|
19679
19934
|
*/
|
|
19680
|
-
declare function perfectionist(): Promise<TypedFlatConfigItem[]>;
|
|
19935
|
+
declare function perfectionist(options: OptionsOverrides): Promise<TypedFlatConfigItem[]>;
|
|
19681
19936
|
//#endregion
|
|
19682
19937
|
//#region src/configs/pnpm.d.ts
|
|
19683
19938
|
declare function pnpm(options: OptionsPnpm): Promise<TypedFlatConfigItem[]>;
|