@luxass/eslint-config 4.5.0 → 4.6.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/dist/index.cjs +119 -321
- package/dist/index.d.cts +25 -704
- package/dist/index.d.ts +25 -704
- package/dist/index.js +118 -319
- package/package.json +14 -30
package/dist/index.d.cts
CHANGED
|
@@ -3018,107 +3018,6 @@ interface RuleOptions {
|
|
|
3018
3018
|
* @deprecated
|
|
3019
3019
|
*/
|
|
3020
3020
|
'semi-style'?: Linter.RuleEntry<SemiStyle>
|
|
3021
|
-
/**
|
|
3022
|
-
* Disallow early returns in components. Solid components only run once, and so conditionals should be inside JSX.
|
|
3023
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/components-return-once.md
|
|
3024
|
-
*/
|
|
3025
|
-
'solid/components-return-once'?: Linter.RuleEntry<[]>
|
|
3026
|
-
/**
|
|
3027
|
-
* Enforce naming DOM element event handlers consistently and prevent Solid's analysis from misunderstanding whether a prop should be an event handler.
|
|
3028
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/event-handlers.md
|
|
3029
|
-
*/
|
|
3030
|
-
'solid/event-handlers'?: Linter.RuleEntry<SolidEventHandlers>
|
|
3031
|
-
/**
|
|
3032
|
-
* Enforce consistent imports from "solid-js", "solid-js/web", and "solid-js/store".
|
|
3033
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/imports.md
|
|
3034
|
-
*/
|
|
3035
|
-
'solid/imports'?: Linter.RuleEntry<[]>
|
|
3036
|
-
/**
|
|
3037
|
-
* Disallow passing the same prop twice in JSX.
|
|
3038
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/jsx-no-duplicate-props.md
|
|
3039
|
-
*/
|
|
3040
|
-
'solid/jsx-no-duplicate-props'?: Linter.RuleEntry<SolidJsxNoDuplicateProps>
|
|
3041
|
-
/**
|
|
3042
|
-
* Disallow javascript: URLs.
|
|
3043
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/jsx-no-script-url.md
|
|
3044
|
-
*/
|
|
3045
|
-
'solid/jsx-no-script-url'?: Linter.RuleEntry<[]>
|
|
3046
|
-
/**
|
|
3047
|
-
* Disallow references to undefined variables in JSX. Handles custom directives.
|
|
3048
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/jsx-no-undef.md
|
|
3049
|
-
*/
|
|
3050
|
-
'solid/jsx-no-undef'?: Linter.RuleEntry<SolidJsxNoUndef>
|
|
3051
|
-
/**
|
|
3052
|
-
* Prevent variables used in JSX from being marked as unused.
|
|
3053
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/jsx-uses-vars.md
|
|
3054
|
-
*/
|
|
3055
|
-
'solid/jsx-uses-vars'?: Linter.RuleEntry<[]>
|
|
3056
|
-
/**
|
|
3057
|
-
* Disallow usage of type-unsafe event handlers.
|
|
3058
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-array-handlers.md
|
|
3059
|
-
*/
|
|
3060
|
-
'solid/no-array-handlers'?: Linter.RuleEntry<[]>
|
|
3061
|
-
/**
|
|
3062
|
-
* Disallow destructuring props. In Solid, props must be used with property accesses (`props.foo`) to preserve reactivity. This rule only tracks destructuring in the parameter list.
|
|
3063
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-destructure.md
|
|
3064
|
-
*/
|
|
3065
|
-
'solid/no-destructure'?: Linter.RuleEntry<[]>
|
|
3066
|
-
/**
|
|
3067
|
-
* Disallow usage of the innerHTML attribute, which can often lead to security vulnerabilities.
|
|
3068
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-innerhtml.md
|
|
3069
|
-
*/
|
|
3070
|
-
'solid/no-innerhtml'?: Linter.RuleEntry<SolidNoInnerhtml>
|
|
3071
|
-
/**
|
|
3072
|
-
* Disallow usage of APIs that use ES6 Proxies, only to target environments that don't support them.
|
|
3073
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-proxy-apis.md
|
|
3074
|
-
*/
|
|
3075
|
-
'solid/no-proxy-apis'?: Linter.RuleEntry<[]>
|
|
3076
|
-
/**
|
|
3077
|
-
* Disallow usage of dependency arrays in `createEffect` and `createMemo`.
|
|
3078
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-react-deps.md
|
|
3079
|
-
*/
|
|
3080
|
-
'solid/no-react-deps'?: Linter.RuleEntry<[]>
|
|
3081
|
-
/**
|
|
3082
|
-
* Disallow usage of React-specific `className`/`htmlFor` props, which were deprecated in v1.4.0.
|
|
3083
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-react-specific-props.md
|
|
3084
|
-
*/
|
|
3085
|
-
'solid/no-react-specific-props'?: Linter.RuleEntry<[]>
|
|
3086
|
-
/**
|
|
3087
|
-
* Enforce using only Solid-specific namespaced attribute names (i.e. `'on:'` in `<div on:click={...} />`).
|
|
3088
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/no-unknown-namespaces.md
|
|
3089
|
-
*/
|
|
3090
|
-
'solid/no-unknown-namespaces'?: Linter.RuleEntry<SolidNoUnknownNamespaces>
|
|
3091
|
-
/**
|
|
3092
|
-
* Enforce using the classlist prop over importing a classnames helper. The classlist prop accepts an object `{ [class: string]: boolean }` just like classnames.
|
|
3093
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/prefer-classlist.md
|
|
3094
|
-
* @deprecated
|
|
3095
|
-
*/
|
|
3096
|
-
'solid/prefer-classlist'?: Linter.RuleEntry<SolidPreferClasslist>
|
|
3097
|
-
/**
|
|
3098
|
-
* Enforce using Solid's `<For />` component for mapping an array to JSX elements.
|
|
3099
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/prefer-for.md
|
|
3100
|
-
*/
|
|
3101
|
-
'solid/prefer-for'?: Linter.RuleEntry<[]>
|
|
3102
|
-
/**
|
|
3103
|
-
* Enforce using Solid's `<Show />` component for conditionally showing content. Solid's compiler covers this case, so it's a stylistic rule only.
|
|
3104
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/prefer-show.md
|
|
3105
|
-
*/
|
|
3106
|
-
'solid/prefer-show'?: Linter.RuleEntry<[]>
|
|
3107
|
-
/**
|
|
3108
|
-
* Enforce that reactivity (props, signals, memos, etc.) is properly used, so changes in those values will be tracked and update the view as expected.
|
|
3109
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/reactivity.md
|
|
3110
|
-
*/
|
|
3111
|
-
'solid/reactivity'?: Linter.RuleEntry<SolidReactivity>
|
|
3112
|
-
/**
|
|
3113
|
-
* Disallow extra closing tags for components without children.
|
|
3114
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/self-closing-comp.md
|
|
3115
|
-
*/
|
|
3116
|
-
'solid/self-closing-comp'?: Linter.RuleEntry<SolidSelfClosingComp>
|
|
3117
|
-
/**
|
|
3118
|
-
* Require CSS properties in the `style` prop to be valid and kebab-cased (ex. 'font-size'), not camel-cased (ex. 'fontSize') like in React, and that property values with dimensions are strings, not numbers with implicit 'px' units.
|
|
3119
|
-
* @see https://github.com/solidjs-community/eslint-plugin-solid/blob/main/docs/style-prop.md
|
|
3120
|
-
*/
|
|
3121
|
-
'solid/style-prop'?: Linter.RuleEntry<SolidStyleProp>
|
|
3122
3021
|
/**
|
|
3123
3022
|
* Enforce sorted import declarations within modules
|
|
3124
3023
|
* @see https://eslint.org/docs/latest/rules/sort-imports
|
|
@@ -3650,322 +3549,6 @@ interface RuleOptions {
|
|
|
3650
3549
|
* @see https://eslint.style/rules/js/yield-star-spacing
|
|
3651
3550
|
*/
|
|
3652
3551
|
'style/yield-star-spacing'?: Linter.RuleEntry<StyleYieldStarSpacing>
|
|
3653
|
-
/**
|
|
3654
|
-
* disallow conditionals where the type is always truthy or always falsy
|
|
3655
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/@typescript-eslint/no-unnecessary-condition/
|
|
3656
|
-
* @deprecated
|
|
3657
|
-
*/
|
|
3658
|
-
'svelte/@typescript-eslint/no-unnecessary-condition'?: Linter.RuleEntry<SvelteTypescriptEslintNoUnnecessaryCondition>
|
|
3659
|
-
/**
|
|
3660
|
-
* disallows the use of languages other than those specified in the configuration for the lang attribute of `<script>` and `<style>` blocks.
|
|
3661
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/block-lang/
|
|
3662
|
-
*/
|
|
3663
|
-
'svelte/block-lang'?: Linter.RuleEntry<SvelteBlockLang>
|
|
3664
|
-
/**
|
|
3665
|
-
* disallow usage of button without an explicit type attribute
|
|
3666
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/button-has-type/
|
|
3667
|
-
*/
|
|
3668
|
-
'svelte/button-has-type'?: Linter.RuleEntry<SvelteButtonHasType>
|
|
3669
|
-
/**
|
|
3670
|
-
* support comment-directives in HTML template
|
|
3671
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/comment-directive/
|
|
3672
|
-
*/
|
|
3673
|
-
'svelte/comment-directive'?: Linter.RuleEntry<SvelteCommentDirective>
|
|
3674
|
-
/**
|
|
3675
|
-
* derived store should use same variable names between values and callback
|
|
3676
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/derived-has-same-inputs-outputs/
|
|
3677
|
-
*/
|
|
3678
|
-
'svelte/derived-has-same-inputs-outputs'?: Linter.RuleEntry<[]>
|
|
3679
|
-
/**
|
|
3680
|
-
* require slot type declaration using the `$$Slots` interface
|
|
3681
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/experimental-require-slot-types/
|
|
3682
|
-
*/
|
|
3683
|
-
'svelte/experimental-require-slot-types'?: Linter.RuleEntry<[]>
|
|
3684
|
-
/**
|
|
3685
|
-
* require the strictEvents attribute on `<script>` tags
|
|
3686
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/experimental-require-strict-events/
|
|
3687
|
-
*/
|
|
3688
|
-
'svelte/experimental-require-strict-events'?: Linter.RuleEntry<[]>
|
|
3689
|
-
/**
|
|
3690
|
-
* enforce the location of first attribute
|
|
3691
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/first-attribute-linebreak/
|
|
3692
|
-
*/
|
|
3693
|
-
'svelte/first-attribute-linebreak'?: Linter.RuleEntry<SvelteFirstAttributeLinebreak>
|
|
3694
|
-
/**
|
|
3695
|
-
* require or disallow a space before tag's closing brackets
|
|
3696
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-spacing/
|
|
3697
|
-
*/
|
|
3698
|
-
'svelte/html-closing-bracket-spacing'?: Linter.RuleEntry<SvelteHtmlClosingBracketSpacing>
|
|
3699
|
-
/**
|
|
3700
|
-
* enforce quotes style of HTML attributes
|
|
3701
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/html-quotes/
|
|
3702
|
-
*/
|
|
3703
|
-
'svelte/html-quotes'?: Linter.RuleEntry<SvelteHtmlQuotes>
|
|
3704
|
-
/**
|
|
3705
|
-
* enforce self-closing style
|
|
3706
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/html-self-closing/
|
|
3707
|
-
*/
|
|
3708
|
-
'svelte/html-self-closing'?: Linter.RuleEntry<SvelteHtmlSelfClosing>
|
|
3709
|
-
/**
|
|
3710
|
-
* enforce consistent indentation
|
|
3711
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/indent/
|
|
3712
|
-
*/
|
|
3713
|
-
'svelte/indent'?: Linter.RuleEntry<SvelteIndent>
|
|
3714
|
-
/**
|
|
3715
|
-
* Svelte runtime prevents calling the same reactive statement twice in a microtask. But between different microtask, it doesn't prevent.
|
|
3716
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/infinite-reactive-loop/
|
|
3717
|
-
*/
|
|
3718
|
-
'svelte/infinite-reactive-loop'?: Linter.RuleEntry<[]>
|
|
3719
|
-
/**
|
|
3720
|
-
* enforce the maximum number of attributes per line
|
|
3721
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/max-attributes-per-line/
|
|
3722
|
-
*/
|
|
3723
|
-
'svelte/max-attributes-per-line'?: Linter.RuleEntry<SvelteMaxAttributesPerLine>
|
|
3724
|
-
/**
|
|
3725
|
-
* enforce unified spacing in mustache
|
|
3726
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/mustache-spacing/
|
|
3727
|
-
*/
|
|
3728
|
-
'svelte/mustache-spacing'?: Linter.RuleEntry<SvelteMustacheSpacing>
|
|
3729
|
-
/**
|
|
3730
|
-
* disallow the use of `{@debug}`
|
|
3731
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-debug-tags/
|
|
3732
|
-
*/
|
|
3733
|
-
'svelte/no-at-debug-tags'?: Linter.RuleEntry<[]>
|
|
3734
|
-
/**
|
|
3735
|
-
* disallow use of `{@html}` to prevent XSS attack
|
|
3736
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-html-tags/
|
|
3737
|
-
*/
|
|
3738
|
-
'svelte/no-at-html-tags'?: Linter.RuleEntry<[]>
|
|
3739
|
-
/**
|
|
3740
|
-
* disallow DOM manipulating
|
|
3741
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dom-manipulating/
|
|
3742
|
-
*/
|
|
3743
|
-
'svelte/no-dom-manipulating'?: Linter.RuleEntry<[]>
|
|
3744
|
-
/**
|
|
3745
|
-
* disallow duplicate conditions in `{#if}` / `{:else if}` chains
|
|
3746
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-else-if-blocks/
|
|
3747
|
-
*/
|
|
3748
|
-
'svelte/no-dupe-else-if-blocks'?: Linter.RuleEntry<[]>
|
|
3749
|
-
/**
|
|
3750
|
-
* disallow duplicate `on:` directives
|
|
3751
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-on-directives/
|
|
3752
|
-
*/
|
|
3753
|
-
'svelte/no-dupe-on-directives'?: Linter.RuleEntry<[]>
|
|
3754
|
-
/**
|
|
3755
|
-
* disallow duplicate style properties
|
|
3756
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-style-properties/
|
|
3757
|
-
*/
|
|
3758
|
-
'svelte/no-dupe-style-properties'?: Linter.RuleEntry<[]>
|
|
3759
|
-
/**
|
|
3760
|
-
* disallow duplicate `use:` directives
|
|
3761
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-use-directives/
|
|
3762
|
-
*/
|
|
3763
|
-
'svelte/no-dupe-use-directives'?: Linter.RuleEntry<[]>
|
|
3764
|
-
/**
|
|
3765
|
-
* disallow dynamic slot name
|
|
3766
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dynamic-slot-name/
|
|
3767
|
-
*/
|
|
3768
|
-
'svelte/no-dynamic-slot-name'?: Linter.RuleEntry<[]>
|
|
3769
|
-
/**
|
|
3770
|
-
* disallow exporting load functions in `*.svelte` module in SvelteKit page components.
|
|
3771
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-export-load-in-svelte-module-in-kit-pages/
|
|
3772
|
-
*/
|
|
3773
|
-
'svelte/no-export-load-in-svelte-module-in-kit-pages'?: Linter.RuleEntry<[]>
|
|
3774
|
-
/**
|
|
3775
|
-
* disallow wrapping single reactive statements in curly braces
|
|
3776
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-extra-reactive-curlies/
|
|
3777
|
-
*/
|
|
3778
|
-
'svelte/no-extra-reactive-curlies'?: Linter.RuleEntry<[]>
|
|
3779
|
-
/**
|
|
3780
|
-
* disallow using goto() without the base path
|
|
3781
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-goto-without-base/
|
|
3782
|
-
*/
|
|
3783
|
-
'svelte/no-goto-without-base'?: Linter.RuleEntry<[]>
|
|
3784
|
-
/**
|
|
3785
|
-
* disallow ignoring the unsubscribe method returned by the `subscribe()` on Svelte stores.
|
|
3786
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-ignored-unsubscribe/
|
|
3787
|
-
*/
|
|
3788
|
-
'svelte/no-ignored-unsubscribe'?: Linter.RuleEntry<[]>
|
|
3789
|
-
/**
|
|
3790
|
-
* disallow reactive statements that don't reference reactive values.
|
|
3791
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-immutable-reactive-statements/
|
|
3792
|
-
*/
|
|
3793
|
-
'svelte/no-immutable-reactive-statements'?: Linter.RuleEntry<[]>
|
|
3794
|
-
/**
|
|
3795
|
-
* disallow attributes and directives that produce inline styles
|
|
3796
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inline-styles/
|
|
3797
|
-
*/
|
|
3798
|
-
'svelte/no-inline-styles'?: Linter.RuleEntry<SvelteNoInlineStyles>
|
|
3799
|
-
/**
|
|
3800
|
-
* disallow variable or `function` declarations in nested blocks
|
|
3801
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inner-declarations/
|
|
3802
|
-
*/
|
|
3803
|
-
'svelte/no-inner-declarations'?: Linter.RuleEntry<SvelteNoInnerDeclarations>
|
|
3804
|
-
/**
|
|
3805
|
-
* disallow use of not function in event handler
|
|
3806
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-not-function-handler/
|
|
3807
|
-
*/
|
|
3808
|
-
'svelte/no-not-function-handler'?: Linter.RuleEntry<[]>
|
|
3809
|
-
/**
|
|
3810
|
-
* disallow objects in text mustache interpolation
|
|
3811
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-object-in-text-mustaches/
|
|
3812
|
-
*/
|
|
3813
|
-
'svelte/no-object-in-text-mustaches'?: Linter.RuleEntry<[]>
|
|
3814
|
-
/**
|
|
3815
|
-
* it's not necessary to define functions in reactive statements
|
|
3816
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-reactive-functions/
|
|
3817
|
-
*/
|
|
3818
|
-
'svelte/no-reactive-functions'?: Linter.RuleEntry<[]>
|
|
3819
|
-
/**
|
|
3820
|
-
* don't assign literal values in reactive statements
|
|
3821
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-reactive-literals/
|
|
3822
|
-
*/
|
|
3823
|
-
'svelte/no-reactive-literals'?: Linter.RuleEntry<[]>
|
|
3824
|
-
/**
|
|
3825
|
-
* disallow reassigning reactive values
|
|
3826
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-reactive-reassign/
|
|
3827
|
-
*/
|
|
3828
|
-
'svelte/no-reactive-reassign'?: Linter.RuleEntry<SvelteNoReactiveReassign>
|
|
3829
|
-
/**
|
|
3830
|
-
* disallow specific HTML elements
|
|
3831
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-restricted-html-elements/
|
|
3832
|
-
*/
|
|
3833
|
-
'svelte/no-restricted-html-elements'?: Linter.RuleEntry<SvelteNoRestrictedHtmlElements>
|
|
3834
|
-
/**
|
|
3835
|
-
* disallow shorthand style properties that override related longhand properties
|
|
3836
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-shorthand-style-property-overrides/
|
|
3837
|
-
*/
|
|
3838
|
-
'svelte/no-shorthand-style-property-overrides'?: Linter.RuleEntry<[]>
|
|
3839
|
-
/**
|
|
3840
|
-
* disallow spaces around equal signs in attribute
|
|
3841
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-spaces-around-equal-signs-in-attribute/
|
|
3842
|
-
*/
|
|
3843
|
-
'svelte/no-spaces-around-equal-signs-in-attribute'?: Linter.RuleEntry<[]>
|
|
3844
|
-
/**
|
|
3845
|
-
* disallow using async/await inside svelte stores because it causes issues with the auto-unsubscribing features
|
|
3846
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-store-async/
|
|
3847
|
-
*/
|
|
3848
|
-
'svelte/no-store-async'?: Linter.RuleEntry<[]>
|
|
3849
|
-
/**
|
|
3850
|
-
* svelte/internal will be removed in Svelte 6.
|
|
3851
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-svelte-internal/
|
|
3852
|
-
*/
|
|
3853
|
-
'svelte/no-svelte-internal'?: Linter.RuleEntry<[]>
|
|
3854
|
-
/**
|
|
3855
|
-
* disallow `target="_blank"` attribute without `rel="noopener noreferrer"`
|
|
3856
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-target-blank/
|
|
3857
|
-
*/
|
|
3858
|
-
'svelte/no-target-blank'?: Linter.RuleEntry<SvelteNoTargetBlank>
|
|
3859
|
-
/**
|
|
3860
|
-
* disallow trailing whitespace at the end of lines
|
|
3861
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-trailing-spaces/
|
|
3862
|
-
*/
|
|
3863
|
-
'svelte/no-trailing-spaces'?: Linter.RuleEntry<SvelteNoTrailingSpaces>
|
|
3864
|
-
/**
|
|
3865
|
-
* disallow unknown `style:property`
|
|
3866
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unknown-style-directive-property/
|
|
3867
|
-
*/
|
|
3868
|
-
'svelte/no-unknown-style-directive-property'?: Linter.RuleEntry<SvelteNoUnknownStyleDirectiveProperty>
|
|
3869
|
-
/**
|
|
3870
|
-
* disallow the use of a class in the template without a corresponding style
|
|
3871
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unused-class-name/
|
|
3872
|
-
*/
|
|
3873
|
-
'svelte/no-unused-class-name'?: Linter.RuleEntry<SvelteNoUnusedClassName>
|
|
3874
|
-
/**
|
|
3875
|
-
* disallow unused svelte-ignore comments
|
|
3876
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unused-svelte-ignore/
|
|
3877
|
-
*/
|
|
3878
|
-
'svelte/no-unused-svelte-ignore'?: Linter.RuleEntry<[]>
|
|
3879
|
-
/**
|
|
3880
|
-
* disallow unnecessary mustache interpolations
|
|
3881
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-useless-mustaches/
|
|
3882
|
-
*/
|
|
3883
|
-
'svelte/no-useless-mustaches'?: Linter.RuleEntry<SvelteNoUselessMustaches>
|
|
3884
|
-
/**
|
|
3885
|
-
* require class directives instead of ternary expressions
|
|
3886
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-class-directive/
|
|
3887
|
-
*/
|
|
3888
|
-
'svelte/prefer-class-directive'?: Linter.RuleEntry<SveltePreferClassDirective>
|
|
3889
|
-
/**
|
|
3890
|
-
* destructure values from object stores for better change tracking & fewer redraws
|
|
3891
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-destructured-store-props/
|
|
3892
|
-
*/
|
|
3893
|
-
'svelte/prefer-destructured-store-props'?: Linter.RuleEntry<[]>
|
|
3894
|
-
/**
|
|
3895
|
-
* require style directives instead of style attribute
|
|
3896
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-style-directive/
|
|
3897
|
-
*/
|
|
3898
|
-
'svelte/prefer-style-directive'?: Linter.RuleEntry<[]>
|
|
3899
|
-
/**
|
|
3900
|
-
* require keyed `{#each}` block
|
|
3901
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/require-each-key/
|
|
3902
|
-
*/
|
|
3903
|
-
'svelte/require-each-key'?: Linter.RuleEntry<[]>
|
|
3904
|
-
/**
|
|
3905
|
-
* require type parameters for `createEventDispatcher`
|
|
3906
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/require-event-dispatcher-types/
|
|
3907
|
-
*/
|
|
3908
|
-
'svelte/require-event-dispatcher-types'?: Linter.RuleEntry<[]>
|
|
3909
|
-
/**
|
|
3910
|
-
* require style attributes that can be optimized
|
|
3911
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/require-optimized-style-attribute/
|
|
3912
|
-
*/
|
|
3913
|
-
'svelte/require-optimized-style-attribute'?: Linter.RuleEntry<[]>
|
|
3914
|
-
/**
|
|
3915
|
-
* store callbacks must use `set` param
|
|
3916
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/require-store-callbacks-use-set-param/
|
|
3917
|
-
*/
|
|
3918
|
-
'svelte/require-store-callbacks-use-set-param'?: Linter.RuleEntry<[]>
|
|
3919
|
-
/**
|
|
3920
|
-
* disallow to use of the store itself as an operand. Need to use $ prefix or get function.
|
|
3921
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/require-store-reactive-access/
|
|
3922
|
-
*/
|
|
3923
|
-
'svelte/require-store-reactive-access'?: Linter.RuleEntry<[]>
|
|
3924
|
-
/**
|
|
3925
|
-
* require initial value in store
|
|
3926
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/require-stores-init/
|
|
3927
|
-
*/
|
|
3928
|
-
'svelte/require-stores-init'?: Linter.RuleEntry<[]>
|
|
3929
|
-
/**
|
|
3930
|
-
* enforce use of shorthand syntax in attribute
|
|
3931
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/shorthand-attribute/
|
|
3932
|
-
*/
|
|
3933
|
-
'svelte/shorthand-attribute'?: Linter.RuleEntry<SvelteShorthandAttribute>
|
|
3934
|
-
/**
|
|
3935
|
-
* enforce use of shorthand syntax in directives
|
|
3936
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/shorthand-directive/
|
|
3937
|
-
*/
|
|
3938
|
-
'svelte/shorthand-directive'?: Linter.RuleEntry<SvelteShorthandDirective>
|
|
3939
|
-
/**
|
|
3940
|
-
* enforce order of attributes
|
|
3941
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/sort-attributes/
|
|
3942
|
-
*/
|
|
3943
|
-
'svelte/sort-attributes'?: Linter.RuleEntry<SvelteSortAttributes>
|
|
3944
|
-
/**
|
|
3945
|
-
* enforce consistent spacing after the `<!--` and before the `-->` in a HTML comment
|
|
3946
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/spaced-html-comment/
|
|
3947
|
-
*/
|
|
3948
|
-
'svelte/spaced-html-comment'?: Linter.RuleEntry<SvelteSpacedHtmlComment>
|
|
3949
|
-
/**
|
|
3950
|
-
* system rule for working this plugin
|
|
3951
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/system/
|
|
3952
|
-
*/
|
|
3953
|
-
'svelte/system'?: Linter.RuleEntry<[]>
|
|
3954
|
-
/**
|
|
3955
|
-
* disallow warnings when compiling.
|
|
3956
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/valid-compile/
|
|
3957
|
-
*/
|
|
3958
|
-
'svelte/valid-compile'?: Linter.RuleEntry<SvelteValidCompile>
|
|
3959
|
-
/**
|
|
3960
|
-
* enforce keys to use variables defined in the `{#each}` block
|
|
3961
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/valid-each-key/
|
|
3962
|
-
*/
|
|
3963
|
-
'svelte/valid-each-key'?: Linter.RuleEntry<[]>
|
|
3964
|
-
/**
|
|
3965
|
-
* disallow props other than data or errors in SvelteKit page components.
|
|
3966
|
-
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/valid-prop-names-in-kit-pages/
|
|
3967
|
-
*/
|
|
3968
|
-
'svelte/valid-prop-names-in-kit-pages'?: Linter.RuleEntry<[]>
|
|
3969
3552
|
/**
|
|
3970
3553
|
* Enforce spacing around colons of switch statements
|
|
3971
3554
|
* @see https://eslint.org/docs/latest/rules/switch-colon-spacing
|
|
@@ -4821,6 +4404,11 @@ interface RuleOptions {
|
|
|
4821
4404
|
* @see https://typescript-eslint.io/rules/no-unnecessary-qualifier
|
|
4822
4405
|
*/
|
|
4823
4406
|
'ts/no-unnecessary-qualifier'?: Linter.RuleEntry<[]>
|
|
4407
|
+
/**
|
|
4408
|
+
* Disallow unnecessary template expressions
|
|
4409
|
+
* @see https://typescript-eslint.io/rules/no-unnecessary-template-expression
|
|
4410
|
+
*/
|
|
4411
|
+
'ts/no-unnecessary-template-expression'?: Linter.RuleEntry<[]>
|
|
4824
4412
|
/**
|
|
4825
4413
|
* Disallow type arguments that are equal to the default
|
|
4826
4414
|
* @see https://typescript-eslint.io/rules/no-unnecessary-type-arguments
|
|
@@ -4902,8 +4490,9 @@ interface RuleOptions {
|
|
|
4902
4490
|
*/
|
|
4903
4491
|
'ts/no-useless-empty-export'?: Linter.RuleEntry<[]>
|
|
4904
4492
|
/**
|
|
4905
|
-
* Disallow unnecessary template
|
|
4493
|
+
* Disallow unnecessary template expressions
|
|
4906
4494
|
* @see https://typescript-eslint.io/rules/no-useless-template-literals
|
|
4495
|
+
* @deprecated
|
|
4907
4496
|
*/
|
|
4908
4497
|
'ts/no-useless-template-literals'?: Linter.RuleEntry<[]>
|
|
4909
4498
|
/**
|
|
@@ -5051,7 +4640,7 @@ interface RuleOptions {
|
|
|
5051
4640
|
*/
|
|
5052
4641
|
'ts/require-array-sort-compare'?: Linter.RuleEntry<TsRequireArraySortCompare>
|
|
5053
4642
|
/**
|
|
5054
|
-
* Disallow async functions which have no `await` expression
|
|
4643
|
+
* Disallow async functions which do not return promises and have no `await` expression
|
|
5055
4644
|
* @see https://typescript-eslint.io/rules/require-await
|
|
5056
4645
|
*/
|
|
5057
4646
|
'ts/require-await'?: Linter.RuleEntry<[]>
|
|
@@ -9600,7 +9189,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
9600
9189
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
9601
9190
|
version?: string
|
|
9602
9191
|
allowExperimental?: boolean
|
|
9603
|
-
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" | "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" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "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.exitCode" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "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.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.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.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.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "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.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "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.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.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.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.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.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.createRequire" | "module.createRequireFromPath" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.isBuiltin" | "module.Module.register" | "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.SocketAddress" | "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.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.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.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.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.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.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" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "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" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.MockFunctionContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.MockFunctionContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "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" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "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.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "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.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.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.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.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress" | "zlib.BrotliDecompress" | "zlib.Deflate" | "zlib.DeflateRaw" | "zlib.Gunzip" | "zlib.Gzip" | "zlib.Inflate" | "zlib.InflateRaw" | "zlib.Unzip" | "zlib")[]
|
|
9192
|
+
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" | "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" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "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.exitCode" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "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.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.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.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.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "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.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "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.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.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.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.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.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.createRequire" | "module.createRequireFromPath" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.isBuiltin" | "module.Module.register" | "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.SocketAddress" | "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.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.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.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.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.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.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" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "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" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.MockFunctionContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.MockFunctionContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "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" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "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.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "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.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.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.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.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress" | "zlib.BrotliDecompress" | "zlib.Deflate" | "zlib.DeflateRaw" | "zlib.Gunzip" | "zlib.Gzip" | "zlib.Inflate" | "zlib.InflateRaw" | "zlib.Unzip" | "zlib")[]
|
|
9604
9193
|
}]
|
|
9605
9194
|
// ----- node/prefer-global/buffer -----
|
|
9606
9195
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -9850,62 +9439,6 @@ type SemiSpacing = []|[{
|
|
|
9850
9439
|
}]
|
|
9851
9440
|
// ----- semi-style -----
|
|
9852
9441
|
type SemiStyle = []|[("last" | "first")]
|
|
9853
|
-
// ----- solid/event-handlers -----
|
|
9854
|
-
type SolidEventHandlers = []|[{
|
|
9855
|
-
|
|
9856
|
-
ignoreCase?: boolean
|
|
9857
|
-
|
|
9858
|
-
warnOnSpread?: boolean
|
|
9859
|
-
}]
|
|
9860
|
-
// ----- solid/jsx-no-duplicate-props -----
|
|
9861
|
-
type SolidJsxNoDuplicateProps = []|[{
|
|
9862
|
-
|
|
9863
|
-
ignoreCase?: boolean
|
|
9864
|
-
[k: string]: unknown | undefined
|
|
9865
|
-
}]
|
|
9866
|
-
// ----- solid/jsx-no-undef -----
|
|
9867
|
-
type SolidJsxNoUndef = []|[{
|
|
9868
|
-
|
|
9869
|
-
allowGlobals?: boolean
|
|
9870
|
-
|
|
9871
|
-
autoImport?: boolean
|
|
9872
|
-
|
|
9873
|
-
typescriptEnabled?: boolean
|
|
9874
|
-
}]
|
|
9875
|
-
// ----- solid/no-innerhtml -----
|
|
9876
|
-
type SolidNoInnerhtml = []|[{
|
|
9877
|
-
|
|
9878
|
-
allowStatic?: boolean
|
|
9879
|
-
}]
|
|
9880
|
-
// ----- solid/no-unknown-namespaces -----
|
|
9881
|
-
type SolidNoUnknownNamespaces = []|[{
|
|
9882
|
-
|
|
9883
|
-
allowedNamespaces?: [string, ...(string)[]]
|
|
9884
|
-
}]
|
|
9885
|
-
// ----- solid/prefer-classlist -----
|
|
9886
|
-
type SolidPreferClasslist = []|[{
|
|
9887
|
-
|
|
9888
|
-
classnames?: [string, ...(string)[]]
|
|
9889
|
-
}]
|
|
9890
|
-
// ----- solid/reactivity -----
|
|
9891
|
-
type SolidReactivity = []|[{
|
|
9892
|
-
|
|
9893
|
-
customReactiveFunctions?: string[]
|
|
9894
|
-
}]
|
|
9895
|
-
// ----- solid/self-closing-comp -----
|
|
9896
|
-
type SolidSelfClosingComp = []|[{
|
|
9897
|
-
|
|
9898
|
-
component?: ("all" | "none")
|
|
9899
|
-
|
|
9900
|
-
html?: ("all" | "void" | "none")
|
|
9901
|
-
}]
|
|
9902
|
-
// ----- solid/style-prop -----
|
|
9903
|
-
type SolidStyleProp = []|[{
|
|
9904
|
-
|
|
9905
|
-
styleProps?: [string, ...(string)[]]
|
|
9906
|
-
|
|
9907
|
-
allowString?: boolean
|
|
9908
|
-
}]
|
|
9909
9442
|
// ----- sort-imports -----
|
|
9910
9443
|
type SortImports = []|[{
|
|
9911
9444
|
ignoreCase?: boolean
|
|
@@ -10959,156 +10492,6 @@ type StyleYieldStarSpacing = []|[(("before" | "after" | "both" | "neither") | {
|
|
|
10959
10492
|
before?: boolean
|
|
10960
10493
|
after?: boolean
|
|
10961
10494
|
})]
|
|
10962
|
-
// ----- svelte/@typescript-eslint/no-unnecessary-condition -----
|
|
10963
|
-
type SvelteTypescriptEslintNoUnnecessaryCondition = []|[{
|
|
10964
|
-
|
|
10965
|
-
allowConstantLoopConditions?: boolean
|
|
10966
|
-
|
|
10967
|
-
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
10968
|
-
}]
|
|
10969
|
-
// ----- svelte/block-lang -----
|
|
10970
|
-
type SvelteBlockLang = []|[{
|
|
10971
|
-
enforceScriptPresent?: boolean
|
|
10972
|
-
enforceStylePresent?: boolean
|
|
10973
|
-
script?: ((string | null) | [(string | null), ...((string | null))[]])
|
|
10974
|
-
style?: ((string | null) | [(string | null), ...((string | null))[]])
|
|
10975
|
-
}]
|
|
10976
|
-
// ----- svelte/button-has-type -----
|
|
10977
|
-
type SvelteButtonHasType = []|[{
|
|
10978
|
-
button?: boolean
|
|
10979
|
-
submit?: boolean
|
|
10980
|
-
reset?: boolean
|
|
10981
|
-
}]
|
|
10982
|
-
// ----- svelte/comment-directive -----
|
|
10983
|
-
type SvelteCommentDirective = []|[{
|
|
10984
|
-
reportUnusedDisableDirectives?: boolean
|
|
10985
|
-
}]
|
|
10986
|
-
// ----- svelte/first-attribute-linebreak -----
|
|
10987
|
-
type SvelteFirstAttributeLinebreak = []|[{
|
|
10988
|
-
multiline?: ("below" | "beside")
|
|
10989
|
-
singleline?: ("below" | "beside")
|
|
10990
|
-
}]
|
|
10991
|
-
// ----- svelte/html-closing-bracket-spacing -----
|
|
10992
|
-
type SvelteHtmlClosingBracketSpacing = []|[{
|
|
10993
|
-
startTag?: ("always" | "never" | "ignore")
|
|
10994
|
-
endTag?: ("always" | "never" | "ignore")
|
|
10995
|
-
selfClosingTag?: ("always" | "never" | "ignore")
|
|
10996
|
-
}]
|
|
10997
|
-
// ----- svelte/html-quotes -----
|
|
10998
|
-
type SvelteHtmlQuotes = []|[{
|
|
10999
|
-
prefer?: ("double" | "single")
|
|
11000
|
-
dynamic?: {
|
|
11001
|
-
quoted?: boolean
|
|
11002
|
-
avoidInvalidUnquotedInHTML?: boolean
|
|
11003
|
-
}
|
|
11004
|
-
}]
|
|
11005
|
-
// ----- svelte/html-self-closing -----
|
|
11006
|
-
type SvelteHtmlSelfClosing = []|[({
|
|
11007
|
-
void?: ("never" | "always" | "ignore")
|
|
11008
|
-
normal?: ("never" | "always" | "ignore")
|
|
11009
|
-
component?: ("never" | "always" | "ignore")
|
|
11010
|
-
svelte?: ("never" | "always" | "ignore")
|
|
11011
|
-
} | ("all" | "html" | "none"))]
|
|
11012
|
-
// ----- svelte/indent -----
|
|
11013
|
-
type SvelteIndent = []|[{
|
|
11014
|
-
indent?: (number | "tab")
|
|
11015
|
-
indentScript?: boolean
|
|
11016
|
-
switchCase?: number
|
|
11017
|
-
alignAttributesVertically?: boolean
|
|
11018
|
-
ignoredNodes?: (string & {
|
|
11019
|
-
[k: string]: unknown | undefined
|
|
11020
|
-
} & {
|
|
11021
|
-
[k: string]: unknown | undefined
|
|
11022
|
-
})[]
|
|
11023
|
-
}]
|
|
11024
|
-
// ----- svelte/max-attributes-per-line -----
|
|
11025
|
-
type SvelteMaxAttributesPerLine = []|[{
|
|
11026
|
-
multiline?: number
|
|
11027
|
-
singleline?: number
|
|
11028
|
-
}]
|
|
11029
|
-
// ----- svelte/mustache-spacing -----
|
|
11030
|
-
type SvelteMustacheSpacing = []|[{
|
|
11031
|
-
textExpressions?: ("never" | "always")
|
|
11032
|
-
attributesAndProps?: ("never" | "always")
|
|
11033
|
-
directiveExpressions?: ("never" | "always")
|
|
11034
|
-
tags?: {
|
|
11035
|
-
openingBrace?: ("never" | "always")
|
|
11036
|
-
closingBrace?: ("never" | "always" | "always-after-expression")
|
|
11037
|
-
}
|
|
11038
|
-
}]
|
|
11039
|
-
// ----- svelte/no-inline-styles -----
|
|
11040
|
-
type SvelteNoInlineStyles = []|[{
|
|
11041
|
-
allowTransitions?: boolean
|
|
11042
|
-
}]
|
|
11043
|
-
// ----- svelte/no-inner-declarations -----
|
|
11044
|
-
type SvelteNoInnerDeclarations = []|[("functions" | "both")]|[("functions" | "both"), {
|
|
11045
|
-
blockScopedFunctions?: ("allow" | "disallow")
|
|
11046
|
-
}]
|
|
11047
|
-
// ----- svelte/no-reactive-reassign -----
|
|
11048
|
-
type SvelteNoReactiveReassign = []|[{
|
|
11049
|
-
props?: boolean
|
|
11050
|
-
}]
|
|
11051
|
-
// ----- svelte/no-restricted-html-elements -----
|
|
11052
|
-
type SvelteNoRestrictedHtmlElements = [(string | {
|
|
11053
|
-
|
|
11054
|
-
elements?: [string, ...(string)[]]
|
|
11055
|
-
message?: string
|
|
11056
|
-
}), ...((string | {
|
|
11057
|
-
|
|
11058
|
-
elements?: [string, ...(string)[]]
|
|
11059
|
-
message?: string
|
|
11060
|
-
}))[]]
|
|
11061
|
-
// ----- svelte/no-target-blank -----
|
|
11062
|
-
type SvelteNoTargetBlank = []|[{
|
|
11063
|
-
allowReferrer?: boolean
|
|
11064
|
-
enforceDynamicLinks?: ("always" | "never")
|
|
11065
|
-
}]
|
|
11066
|
-
// ----- svelte/no-trailing-spaces -----
|
|
11067
|
-
type SvelteNoTrailingSpaces = []|[{
|
|
11068
|
-
skipBlankLines?: boolean
|
|
11069
|
-
ignoreComments?: boolean
|
|
11070
|
-
}]
|
|
11071
|
-
// ----- svelte/no-unknown-style-directive-property -----
|
|
11072
|
-
type SvelteNoUnknownStyleDirectiveProperty = []|[{
|
|
11073
|
-
|
|
11074
|
-
ignoreProperties?: [string, ...(string)[]]
|
|
11075
|
-
ignorePrefixed?: boolean
|
|
11076
|
-
}]
|
|
11077
|
-
// ----- svelte/no-unused-class-name -----
|
|
11078
|
-
type SvelteNoUnusedClassName = []|[{
|
|
11079
|
-
allowedClassNames?: string[]
|
|
11080
|
-
}]
|
|
11081
|
-
// ----- svelte/no-useless-mustaches -----
|
|
11082
|
-
type SvelteNoUselessMustaches = []|[{
|
|
11083
|
-
ignoreIncludesComment?: boolean
|
|
11084
|
-
ignoreStringEscape?: boolean
|
|
11085
|
-
}]
|
|
11086
|
-
// ----- svelte/prefer-class-directive -----
|
|
11087
|
-
type SveltePreferClassDirective = []|[{
|
|
11088
|
-
prefer?: ("always" | "empty")
|
|
11089
|
-
}]
|
|
11090
|
-
// ----- svelte/shorthand-attribute -----
|
|
11091
|
-
type SvelteShorthandAttribute = []|[{
|
|
11092
|
-
prefer?: ("always" | "never")
|
|
11093
|
-
}]
|
|
11094
|
-
// ----- svelte/shorthand-directive -----
|
|
11095
|
-
type SvelteShorthandDirective = []|[{
|
|
11096
|
-
prefer?: ("always" | "never")
|
|
11097
|
-
}]
|
|
11098
|
-
// ----- svelte/sort-attributes -----
|
|
11099
|
-
type SvelteSortAttributes = []|[{
|
|
11100
|
-
order?: (string | [string, ...(string)[]] | {
|
|
11101
|
-
match: (string | [string, ...(string)[]])
|
|
11102
|
-
sort: ("alphabetical" | "ignore")
|
|
11103
|
-
})[]
|
|
11104
|
-
alphabetical?: boolean
|
|
11105
|
-
}]
|
|
11106
|
-
// ----- svelte/spaced-html-comment -----
|
|
11107
|
-
type SvelteSpacedHtmlComment = []|[("always" | "never")]
|
|
11108
|
-
// ----- svelte/valid-compile -----
|
|
11109
|
-
type SvelteValidCompile = []|[{
|
|
11110
|
-
ignoreWarnings?: boolean
|
|
11111
|
-
}]
|
|
11112
10495
|
// ----- switch-colon-spacing -----
|
|
11113
10496
|
type SwitchColonSpacing = []|[{
|
|
11114
10497
|
before?: boolean
|
|
@@ -12430,6 +11813,18 @@ type TsNoFloatingPromises = []|[{
|
|
|
12430
11813
|
ignoreVoid?: boolean
|
|
12431
11814
|
|
|
12432
11815
|
ignoreIIFE?: boolean
|
|
11816
|
+
allowForKnownSafePromises?: (string | {
|
|
11817
|
+
from: "file"
|
|
11818
|
+
name: (string | [string, ...(string)[]])
|
|
11819
|
+
path?: string
|
|
11820
|
+
} | {
|
|
11821
|
+
from: "lib"
|
|
11822
|
+
name: (string | [string, ...(string)[]])
|
|
11823
|
+
} | {
|
|
11824
|
+
from: "package"
|
|
11825
|
+
name: (string | [string, ...(string)[]])
|
|
11826
|
+
package: string
|
|
11827
|
+
})[]
|
|
12433
11828
|
}]
|
|
12434
11829
|
// ----- ts/no-inferrable-types -----
|
|
12435
11830
|
type TsNoInferrableTypes = []|[{
|
|
@@ -14502,7 +13897,7 @@ type Yoda = []|[("always" | "never")]|[("always" | "never"), {
|
|
|
14502
13897
|
onlyEquality?: boolean
|
|
14503
13898
|
}]
|
|
14504
13899
|
// Names of all the configs
|
|
14505
|
-
type ConfigNames = 'luxass/astro/setup' | 'luxass/astro/rules' | 'luxass/
|
|
13900
|
+
type ConfigNames = 'luxass/astro/setup' | 'luxass/astro/rules' | 'luxass/eslint-comments' | 'luxass/formatter/setup' | 'luxass/imports' | 'luxass/disables/imports-bin' | 'luxass/javascript' | 'luxass/disables/cli' | 'luxass/jsdoc' | 'luxass/jsonc/setup' | 'luxass/jsonc/rules' | 'luxass/markdown/setup' | 'luxass/markdown/processor' | 'luxass/markdown/parser' | 'luxass/markdown/disables' | 'luxass/node' | 'luxass/react/setup' | 'luxass/react/rules' | 'luxass/sort/package-json' | 'luxass/stylistic' | 'luxass/tailwindcss/setup' | 'luxass/tailwindcss/rules' | 'luxass/sort/tsconfig' | 'luxass/test/setup' | 'luxass/test/rules' | 'luxass/toml/setup' | 'luxass/toml/rules' | 'luxass/typescript/setup' | 'luxass/typescript/parser' | 'luxass/typescript/rules' | 'luxass/typescript/rules-type-aware' | 'luxass/typescript/disables/dts' | 'luxass/typescript/disables/tests' | 'luxass/typescript/disables/playground' | 'luxass/typescript/disables/javascript' | 'luxass/unicorn' | 'luxass/unocss/setup' | 'luxass/unocss/rules' | 'luxass/vue/setup' | 'luxass/vue/rules' | 'luxass/yaml/setup' | 'luxass/yaml/rules' | 'luxass/yaml/github-actions'
|
|
14506
13901
|
|
|
14507
13902
|
declare function comments(): Promise<TypedFlatConfigItem[]>;
|
|
14508
13903
|
|
|
@@ -14540,32 +13935,6 @@ interface StylisticOptions {
|
|
|
14540
13935
|
}
|
|
14541
13936
|
declare function stylistic(options?: StylisticOptions): Promise<TypedFlatConfigItem[]>;
|
|
14542
13937
|
|
|
14543
|
-
interface SvelteOptions {
|
|
14544
|
-
/**
|
|
14545
|
-
* Override rules.
|
|
14546
|
-
*/
|
|
14547
|
-
overrides?: TypedFlatConfigItem['rules'];
|
|
14548
|
-
/**
|
|
14549
|
-
* Enable TypeScript support.
|
|
14550
|
-
*
|
|
14551
|
-
* @default true
|
|
14552
|
-
*/
|
|
14553
|
-
typescript?: boolean;
|
|
14554
|
-
/**
|
|
14555
|
-
* Enable stylistic rules.
|
|
14556
|
-
*
|
|
14557
|
-
* @default true
|
|
14558
|
-
*/
|
|
14559
|
-
stylistic?: boolean | StylisticConfig;
|
|
14560
|
-
/**
|
|
14561
|
-
* Glob patterns for Svelte files.
|
|
14562
|
-
*
|
|
14563
|
-
* @default
|
|
14564
|
-
*/
|
|
14565
|
-
files?: string[];
|
|
14566
|
-
}
|
|
14567
|
-
declare function svelte(options?: SvelteOptions): Promise<TypedFlatConfigItem[]>;
|
|
14568
|
-
|
|
14569
13938
|
interface ImportsOptions {
|
|
14570
13939
|
/**
|
|
14571
13940
|
* Enable stylistic rules.
|
|
@@ -14810,12 +14179,6 @@ interface AstroOptions {
|
|
|
14810
14179
|
* Override rules.
|
|
14811
14180
|
*/
|
|
14812
14181
|
overrides?: TypedFlatConfigItem['rules'];
|
|
14813
|
-
/**
|
|
14814
|
-
* Enable TypeScript support.
|
|
14815
|
-
*
|
|
14816
|
-
* @default true
|
|
14817
|
-
*/
|
|
14818
|
-
typescript?: boolean;
|
|
14819
14182
|
/**
|
|
14820
14183
|
* Glob patterns for Astro files.
|
|
14821
14184
|
*
|
|
@@ -15013,32 +14376,6 @@ interface TOMLOptions {
|
|
|
15013
14376
|
}
|
|
15014
14377
|
declare function toml(options?: TOMLOptions): Promise<TypedFlatConfigItem[]>;
|
|
15015
14378
|
|
|
15016
|
-
interface SolidOptions {
|
|
15017
|
-
/**
|
|
15018
|
-
* Override rules.
|
|
15019
|
-
*/
|
|
15020
|
-
overrides?: TypedFlatConfigItem['rules'];
|
|
15021
|
-
/**
|
|
15022
|
-
* Enable TypeScript support.
|
|
15023
|
-
*
|
|
15024
|
-
* @default true
|
|
15025
|
-
*/
|
|
15026
|
-
typescript?: boolean;
|
|
15027
|
-
/**
|
|
15028
|
-
* When this options is provided, type aware rules will be enabled.
|
|
15029
|
-
* @see https://typescript-eslint.io/linting/typed-linting/
|
|
15030
|
-
*/
|
|
15031
|
-
tsconfigPath?: string | string[];
|
|
15032
|
-
/**
|
|
15033
|
-
* Glob patterns for JSX & TSX files.
|
|
15034
|
-
*
|
|
15035
|
-
* @default [GLOB_JSX,GLOB_TSX]
|
|
15036
|
-
* @see https://github.com/luxass/eslint-config/blob/main/src/globs.ts
|
|
15037
|
-
*/
|
|
15038
|
-
files?: string[];
|
|
15039
|
-
}
|
|
15040
|
-
declare function solid(options?: SolidOptions): Promise<TypedFlatConfigItem[]>;
|
|
15041
|
-
|
|
15042
14379
|
interface RegExpOptions {
|
|
15043
14380
|
/**
|
|
15044
14381
|
* Override rules.
|
|
@@ -15051,6 +14388,8 @@ interface RegExpOptions {
|
|
|
15051
14388
|
}
|
|
15052
14389
|
declare function regexp(options?: RegExpOptions): Promise<TypedFlatConfigItem[]>;
|
|
15053
14390
|
|
|
14391
|
+
declare function jsx(): Promise<TypedFlatConfigItem[]>;
|
|
14392
|
+
|
|
15054
14393
|
type Awaitable<T> = T | Promise<T>;
|
|
15055
14394
|
type Rules = RuleOptions;
|
|
15056
14395
|
|
|
@@ -15203,24 +14542,6 @@ interface ConfigOptions {
|
|
|
15203
14542
|
* @default []
|
|
15204
14543
|
*/
|
|
15205
14544
|
exts?: string[];
|
|
15206
|
-
/**
|
|
15207
|
-
* Enable Solid support.
|
|
15208
|
-
*
|
|
15209
|
-
* Requires installing:
|
|
15210
|
-
* - `eslint-plugin-solid`
|
|
15211
|
-
*
|
|
15212
|
-
* @default false
|
|
15213
|
-
*/
|
|
15214
|
-
solid?: boolean | SolidOptions;
|
|
15215
|
-
/**
|
|
15216
|
-
* Enable Svelte support.
|
|
15217
|
-
*
|
|
15218
|
-
* Requires installing:
|
|
15219
|
-
* - `eslint-plugin-svelte`
|
|
15220
|
-
*
|
|
15221
|
-
* @default false
|
|
15222
|
-
*/
|
|
15223
|
-
svelte?: boolean | SvelteOptions;
|
|
15224
14545
|
/**
|
|
15225
14546
|
* Automatically rename plugins in the config.
|
|
15226
14547
|
*
|
|
@@ -15318,4 +14639,4 @@ type ResolvedOptions<T> = T extends boolean ? never : NonNullable<T>;
|
|
|
15318
14639
|
declare function resolveSubOptions<K extends keyof ConfigOptions>(options: ConfigOptions, key: K): ResolvedOptions<ConfigOptions[K]>;
|
|
15319
14640
|
declare function getOverrides<K extends keyof ConfigOptions>(options: ConfigOptions, key: K): any;
|
|
15320
14641
|
|
|
15321
|
-
export { type AstroOptions, type Awaitable, type ConfigNames, type ConfigOptions, type FormattersOptions, GLOB_ASTRO, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_NEXTJS_OG, GLOB_NEXTJS_ROUTES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type ImportsOptions, type JSDOCOptions, type JSONOptions, type JavaScriptOptions, type MarkdownOptions, type ReactOptions, type RegExpOptions, type ResolvedOptions, type Rules, type
|
|
14642
|
+
export { type AstroOptions, type Awaitable, type ConfigNames, type ConfigOptions, type FormattersOptions, GLOB_ASTRO, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_NEXTJS_OG, GLOB_NEXTJS_ROUTES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type ImportsOptions, type JSDOCOptions, type JSONOptions, type JavaScriptOptions, type MarkdownOptions, type ReactOptions, type RegExpOptions, type ResolvedOptions, type Rules, type StylisticConfig, type StylisticOptions, type TOMLOptions, type TailwindCSSOptions, type TestOptions, type TypeScriptOptions, type TypedFlatConfigItem, type UnoCSSOptions, type UserConfigItem, type VueOptions, type YAMLOptions, astro, combine, comments, luxass as default, ensure, formatters, getOverrides, ignores, imports, interop, javascript, jsdoc, jsonc, jsx, luxass, markdown, node, parserPlain, react, regexp, renameRules, resolveSubOptions, sortPackageJson, sortTsconfig, stylistic, tailwindcss, test, toArray, toml, typescript, unicorn, unocss, vue, yaml };
|