@vinicunca/eslint-config 5.0.0 → 5.1.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.d.mts +425 -160
- package/dist/index.mjs +22 -22
- package/dist/{lib-D13rzY6d.mjs → lib-BXrNxJq9.mjs} +274 -237
- package/package.json +41 -37
package/dist/index.d.mts
CHANGED
|
@@ -22,12 +22,12 @@ interface RuleOptions {
|
|
|
22
22
|
*/
|
|
23
23
|
'accessor-pairs'?: Linter.RuleEntry<AccessorPairs>;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Enforce consistent line breaks for chaining member access
|
|
26
26
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-chaining.md
|
|
27
27
|
*/
|
|
28
28
|
'antfu/consistent-chaining'?: Linter.RuleEntry<AntfuConsistentChaining>;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Enforce consistent line breaks inside braces and parentheses
|
|
31
31
|
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-list-newline.md
|
|
32
32
|
*/
|
|
33
33
|
'antfu/consistent-list-newline'?: Linter.RuleEntry<AntfuConsistentListNewline>;
|
|
@@ -53,22 +53,22 @@ interface RuleOptions {
|
|
|
53
53
|
'antfu/indent-unindent'?: Linter.RuleEntry<AntfuIndentUnindent>;
|
|
54
54
|
/**
|
|
55
55
|
* Prevent importing modules in `dist` folder
|
|
56
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.
|
|
56
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.md
|
|
57
57
|
*/
|
|
58
58
|
'antfu/no-import-dist'?: Linter.RuleEntry<[]>;
|
|
59
59
|
/**
|
|
60
60
|
* Prevent importing modules in `node_modules` folder by relative or absolute path
|
|
61
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.
|
|
61
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.md
|
|
62
62
|
*/
|
|
63
63
|
'antfu/no-import-node-modules-by-path'?: Linter.RuleEntry<[]>;
|
|
64
64
|
/**
|
|
65
65
|
* Prevent using top-level await
|
|
66
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.
|
|
66
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.md
|
|
67
67
|
*/
|
|
68
68
|
'antfu/no-top-level-await'?: Linter.RuleEntry<[]>;
|
|
69
69
|
/**
|
|
70
70
|
* Do not use `exports =`
|
|
71
|
-
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.
|
|
71
|
+
* @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.md
|
|
72
72
|
*/
|
|
73
73
|
'antfu/no-ts-export-equal'?: Linter.RuleEntry<[]>;
|
|
74
74
|
/**
|
|
@@ -510,8 +510,7 @@ interface RuleOptions {
|
|
|
510
510
|
*/
|
|
511
511
|
'dot-notation'?: Linter.RuleEntry<DotNotation>;
|
|
512
512
|
/**
|
|
513
|
-
*
|
|
514
|
-
* @see https://github.com/es-tooling/eslint-plugin-depend/blob/main/docs/rules/ban-dependencies.md
|
|
513
|
+
* Disallow dependencies in favor of more performant or secure alternatives
|
|
515
514
|
*/
|
|
516
515
|
'e18e/ban-dependencies'?: Linter.RuleEntry<E18EBanDependencies>;
|
|
517
516
|
/**
|
|
@@ -3311,182 +3310,162 @@ interface RuleOptions {
|
|
|
3311
3310
|
* @see https://eslint.org/docs/latest/rules/radix
|
|
3312
3311
|
*/
|
|
3313
3312
|
'radix'?: Linter.RuleEntry<Radix>;
|
|
3313
|
+
'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>;
|
|
3314
3314
|
/**
|
|
3315
3315
|
* Disallows DOM elements from using 'dangerouslySetInnerHTML'.
|
|
3316
3316
|
* @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
|
|
3317
3317
|
*/
|
|
3318
|
-
'react-
|
|
3318
|
+
'react/dom-no-dangerously-set-innerhtml'?: Linter.RuleEntry<[]>;
|
|
3319
3319
|
/**
|
|
3320
3320
|
* Disallows DOM elements from using 'dangerouslySetInnerHTML' and 'children' at the same time.
|
|
3321
3321
|
* @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml-with-children
|
|
3322
3322
|
*/
|
|
3323
|
-
'react-
|
|
3323
|
+
'react/dom-no-dangerously-set-innerhtml-with-children'?: Linter.RuleEntry<[]>;
|
|
3324
3324
|
/**
|
|
3325
3325
|
* Disallows 'findDOMNode'.
|
|
3326
3326
|
* @see https://eslint-react.xyz/docs/rules/dom-no-find-dom-node
|
|
3327
3327
|
*/
|
|
3328
|
-
'react-
|
|
3328
|
+
'react/dom-no-find-dom-node'?: Linter.RuleEntry<[]>;
|
|
3329
3329
|
/**
|
|
3330
3330
|
* Disallows 'flushSync'.
|
|
3331
3331
|
* @see https://eslint-react.xyz/docs/rules/dom-no-flush-sync
|
|
3332
3332
|
*/
|
|
3333
|
-
'react-
|
|
3333
|
+
'react/dom-no-flush-sync'?: Linter.RuleEntry<[]>;
|
|
3334
3334
|
/**
|
|
3335
3335
|
* Replaces usage of 'ReactDOM.hydrate()' with 'hydrateRoot()'.
|
|
3336
3336
|
* @see https://eslint-react.xyz/docs/rules/dom-no-hydrate
|
|
3337
3337
|
*/
|
|
3338
|
-
'react-
|
|
3338
|
+
'react/dom-no-hydrate'?: Linter.RuleEntry<[]>;
|
|
3339
3339
|
/**
|
|
3340
3340
|
* Enforces an explicit 'type' attribute for 'button' elements.
|
|
3341
3341
|
* @see https://eslint-react.xyz/docs/rules/dom-no-missing-button-type
|
|
3342
3342
|
*/
|
|
3343
|
-
'react-
|
|
3343
|
+
'react/dom-no-missing-button-type'?: Linter.RuleEntry<[]>;
|
|
3344
3344
|
/**
|
|
3345
3345
|
* Enforces an explicit 'sandbox' attribute for 'iframe' elements.
|
|
3346
3346
|
* @see https://eslint-react.xyz/docs/rules/dom-no-missing-iframe-sandbox
|
|
3347
3347
|
*/
|
|
3348
|
-
'react-
|
|
3349
|
-
/**
|
|
3350
|
-
* Enforces the absence of a 'namespace' in React elements.
|
|
3351
|
-
* @see https://eslint-react.xyz/docs/rules/dom-no-namespace
|
|
3352
|
-
*/
|
|
3353
|
-
'react-dom/no-namespace'?: Linter.RuleEntry<[]>;
|
|
3348
|
+
'react/dom-no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>;
|
|
3354
3349
|
/**
|
|
3355
3350
|
* Replaces usage of 'ReactDOM.render()' with 'createRoot(node).render()'.
|
|
3356
3351
|
* @see https://eslint-react.xyz/docs/rules/dom-no-render
|
|
3357
3352
|
*/
|
|
3358
|
-
'react-
|
|
3353
|
+
'react/dom-no-render'?: Linter.RuleEntry<[]>;
|
|
3359
3354
|
/**
|
|
3360
3355
|
* Disallows the return value of 'ReactDOM.render'.
|
|
3361
3356
|
* @see https://eslint-react.xyz/docs/rules/dom-no-render-return-value
|
|
3362
3357
|
*/
|
|
3363
|
-
'react-
|
|
3358
|
+
'react/dom-no-render-return-value'?: Linter.RuleEntry<[]>;
|
|
3364
3359
|
/**
|
|
3365
3360
|
* Disallows 'javascript:' URLs as attribute values.
|
|
3366
3361
|
* @see https://eslint-react.xyz/docs/rules/dom-no-script-url
|
|
3367
3362
|
*/
|
|
3368
|
-
'react-
|
|
3363
|
+
'react/dom-no-script-url'?: Linter.RuleEntry<[]>;
|
|
3369
3364
|
/**
|
|
3370
3365
|
* Disallows the use of string style prop in JSX. Use an object instead.
|
|
3371
3366
|
* @see https://eslint-react.xyz/docs/rules/dom-no-string-style-prop
|
|
3372
3367
|
*/
|
|
3373
|
-
'react-
|
|
3368
|
+
'react/dom-no-string-style-prop'?: Linter.RuleEntry<[]>;
|
|
3374
3369
|
/**
|
|
3375
3370
|
* Disallows unknown 'DOM' properties.
|
|
3376
3371
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unknown-property
|
|
3377
3372
|
*/
|
|
3378
|
-
'react-
|
|
3373
|
+
'react/dom-no-unknown-property'?: Linter.RuleEntry<ReactDomNoUnknownProperty>;
|
|
3379
3374
|
/**
|
|
3380
3375
|
* Enforces that the 'sandbox' attribute for 'iframe' elements is not set to unsafe combinations.
|
|
3381
3376
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-iframe-sandbox
|
|
3382
3377
|
*/
|
|
3383
|
-
'react-
|
|
3378
|
+
'react/dom-no-unsafe-iframe-sandbox'?: Linter.RuleEntry<[]>;
|
|
3384
3379
|
/**
|
|
3385
3380
|
* Disallows 'target="_blank"' without 'rel="noreferrer noopener"'.
|
|
3386
3381
|
* @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-target-blank
|
|
3387
3382
|
*/
|
|
3388
|
-
'react-
|
|
3383
|
+
'react/dom-no-unsafe-target-blank'?: Linter.RuleEntry<[]>;
|
|
3389
3384
|
/**
|
|
3390
3385
|
* Replaces usage of 'useFormState' with 'useActionState'.
|
|
3391
3386
|
* @see https://eslint-react.xyz/docs/rules/dom-no-use-form-state
|
|
3392
3387
|
*/
|
|
3393
|
-
'react-
|
|
3388
|
+
'react/dom-no-use-form-state'?: Linter.RuleEntry<[]>;
|
|
3394
3389
|
/**
|
|
3395
3390
|
* Disallows 'children' in void DOM elements.
|
|
3396
3391
|
* @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
|
|
3397
3392
|
*/
|
|
3398
|
-
'react-
|
|
3393
|
+
'react/dom-no-void-elements-with-children'?: Linter.RuleEntry<[]>;
|
|
3399
3394
|
/**
|
|
3400
|
-
*
|
|
3401
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3402
|
-
*/
|
|
3403
|
-
'react-dom/prefer-namespace-import'?: Linter.RuleEntry<[]>;
|
|
3404
|
-
/**
|
|
3405
|
-
* Enforces the context name to be a valid component name with the suffix 'Context'.
|
|
3406
|
-
* @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
|
|
3407
|
-
*/
|
|
3408
|
-
'react-naming-convention/context-name'?: Linter.RuleEntry<[]>;
|
|
3409
|
-
/**
|
|
3410
|
-
* Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
|
|
3411
|
-
* @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
|
|
3412
|
-
*/
|
|
3413
|
-
'react-naming-convention/id-name'?: Linter.RuleEntry<[]>;
|
|
3414
|
-
/**
|
|
3415
|
-
* Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
|
|
3416
|
-
* @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
|
|
3395
|
+
* Validates usage of Error Boundaries instead of try/catch for errors in child components.
|
|
3396
|
+
* @see https://eslint-react.xyz/docs/rules/error-boundaries
|
|
3417
3397
|
*/
|
|
3418
|
-
'react
|
|
3419
|
-
'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>;
|
|
3398
|
+
'react/error-boundaries'?: Linter.RuleEntry<[]>;
|
|
3420
3399
|
/**
|
|
3421
|
-
*
|
|
3422
|
-
* @see https://
|
|
3400
|
+
* Verifies the list of dependencies for Hooks like 'useEffect' and similar.
|
|
3401
|
+
* @see https://github.com/facebook/react/issues/14920
|
|
3423
3402
|
*/
|
|
3424
|
-
'react
|
|
3403
|
+
'react/exhaustive-deps'?: Linter.RuleEntry<ReactExhaustiveDeps>;
|
|
3425
3404
|
/**
|
|
3426
|
-
*
|
|
3427
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3405
|
+
* Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
|
|
3406
|
+
* @see https://eslint-react.xyz/docs/rules/globals
|
|
3428
3407
|
*/
|
|
3429
|
-
'react
|
|
3408
|
+
'react/globals'?: Linter.RuleEntry<[]>;
|
|
3430
3409
|
/**
|
|
3431
|
-
*
|
|
3432
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3410
|
+
* Validates against mutating props, state, and other values that are immutable.
|
|
3411
|
+
* @see https://eslint-react.xyz/docs/rules/immutability
|
|
3433
3412
|
*/
|
|
3434
|
-
'react
|
|
3413
|
+
'react/immutability'?: Linter.RuleEntry<[]>;
|
|
3435
3414
|
/**
|
|
3436
|
-
*
|
|
3437
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3415
|
+
* Disallows passing 'children' as a prop.
|
|
3416
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-prop
|
|
3438
3417
|
*/
|
|
3439
|
-
'react-
|
|
3418
|
+
'react/jsx-no-children-prop'?: Linter.RuleEntry<[]>;
|
|
3440
3419
|
/**
|
|
3441
|
-
*
|
|
3442
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3420
|
+
* Disallows passing 'children' as a prop when children are also passed as nested content.
|
|
3421
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-prop-with-children
|
|
3443
3422
|
*/
|
|
3444
|
-
'react-
|
|
3423
|
+
'react/jsx-no-children-prop-with-children'?: Linter.RuleEntry<[]>;
|
|
3445
3424
|
/**
|
|
3446
|
-
*
|
|
3447
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3425
|
+
* Prevents comment strings from being accidentally inserted into a JSX element's text nodes.
|
|
3426
|
+
* @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
|
|
3448
3427
|
*/
|
|
3449
|
-
'react/
|
|
3428
|
+
'react/jsx-no-comment-textnodes'?: Linter.RuleEntry<[]>;
|
|
3450
3429
|
/**
|
|
3451
|
-
*
|
|
3452
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3430
|
+
* Prevent patterns that cause deoptimization when using the automatic JSX runtime.
|
|
3431
|
+
* @see https://eslint-react.xyz/docs/rules/no-key-after-spread
|
|
3453
3432
|
*/
|
|
3454
|
-
'react/
|
|
3433
|
+
'react/jsx-no-key-after-spread'?: Linter.RuleEntry<[]>;
|
|
3455
3434
|
/**
|
|
3456
|
-
*
|
|
3457
|
-
* @see https://
|
|
3435
|
+
* Catches `$` before `{expr}` in JSX — typically from template literal `${expr}` being copy-pasted into JSX without removing the `$`. The `$` "leaks" into the rendered output.
|
|
3436
|
+
* @see https://eslint-react.xyz/docs/rules/no-leaked-dollar
|
|
3458
3437
|
*/
|
|
3459
|
-
'react/
|
|
3438
|
+
'react/jsx-no-leaked-dollar'?: Linter.RuleEntry<[]>;
|
|
3460
3439
|
/**
|
|
3461
|
-
*
|
|
3462
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3440
|
+
* Catches `;` at the start of JSX text nodes — typically from accidentally placing a statement-ending `;` inside JSX. The `;` "leaks" into the rendered output.
|
|
3441
|
+
* @see https://eslint-react.xyz/docs/rules/no-leaked-semicolon
|
|
3463
3442
|
*/
|
|
3464
|
-
'react/
|
|
3443
|
+
'react/jsx-no-leaked-semicolon'?: Linter.RuleEntry<[]>;
|
|
3465
3444
|
/**
|
|
3466
|
-
*
|
|
3467
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3445
|
+
* Disallow JSX namespace syntax, as React does not support them.
|
|
3446
|
+
* @see https://eslint-react.xyz/docs/rules/no-namespace
|
|
3468
3447
|
*/
|
|
3469
|
-
'react/jsx-
|
|
3448
|
+
'react/jsx-no-namespace'?: Linter.RuleEntry<[]>;
|
|
3470
3449
|
/**
|
|
3471
|
-
*
|
|
3472
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3450
|
+
* Disallows useless fragment elements.
|
|
3451
|
+
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
3473
3452
|
*/
|
|
3474
|
-
'react/jsx-
|
|
3453
|
+
'react/jsx-no-useless-fragment'?: Linter.RuleEntry<ReactJsxNoUselessFragment>;
|
|
3475
3454
|
/**
|
|
3476
|
-
*
|
|
3477
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3455
|
+
* Enforces the context name to be a valid component name with the suffix 'Context'.
|
|
3456
|
+
* @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
|
|
3478
3457
|
*/
|
|
3479
|
-
'react/
|
|
3458
|
+
'react/naming-convention-context-name'?: Linter.RuleEntry<[]>;
|
|
3480
3459
|
/**
|
|
3481
|
-
* Enforces
|
|
3482
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3460
|
+
* Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
|
|
3461
|
+
* @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
|
|
3483
3462
|
*/
|
|
3484
|
-
'react/
|
|
3463
|
+
'react/naming-convention-id-name'?: Linter.RuleEntry<[]>;
|
|
3485
3464
|
/**
|
|
3486
|
-
* Enforces
|
|
3487
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3465
|
+
* Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
|
|
3466
|
+
* @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
|
|
3488
3467
|
*/
|
|
3489
|
-
'react/
|
|
3468
|
+
'react/naming-convention-ref-name'?: Linter.RuleEntry<[]>;
|
|
3490
3469
|
/**
|
|
3491
3470
|
* Disallows accessing 'this.state' inside 'setState' calls.
|
|
3492
3471
|
* @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
|
|
@@ -3517,11 +3496,6 @@ interface RuleOptions {
|
|
|
3517
3496
|
* @see https://eslint-react.xyz/docs/rules/no-children-only
|
|
3518
3497
|
*/
|
|
3519
3498
|
'react/no-children-only'?: Linter.RuleEntry<[]>;
|
|
3520
|
-
/**
|
|
3521
|
-
* Disallows passing 'children' as a prop.
|
|
3522
|
-
* @see https://eslint-react.xyz/docs/rules/no-children-prop
|
|
3523
|
-
*/
|
|
3524
|
-
'react/no-children-prop'?: Linter.RuleEntry<[]>;
|
|
3525
3499
|
/**
|
|
3526
3500
|
* Disallows the use of 'Children.toArray' from the 'react' package.
|
|
3527
3501
|
* @see https://eslint-react.xyz/docs/rules/no-children-to-array
|
|
@@ -3623,15 +3597,10 @@ interface RuleOptions {
|
|
|
3623
3597
|
*/
|
|
3624
3598
|
'react/no-nested-component-definitions'?: Linter.RuleEntry<[]>;
|
|
3625
3599
|
/**
|
|
3626
|
-
* Disallows nesting lazy component declarations inside other components.
|
|
3600
|
+
* Disallows nesting lazy component declarations inside other components or hooks.
|
|
3627
3601
|
* @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
|
|
3628
3602
|
*/
|
|
3629
3603
|
'react/no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
|
|
3630
|
-
/**
|
|
3631
|
-
* Disallows 'shouldComponentUpdate' when extending 'React.PureComponent'.
|
|
3632
|
-
* @see https://eslint-react.xyz/docs/rules/no-redundant-should-component-update
|
|
3633
|
-
*/
|
|
3634
|
-
'react/no-redundant-should-component-update'?: Linter.RuleEntry<[]>;
|
|
3635
3604
|
/**
|
|
3636
3605
|
* Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
|
|
3637
3606
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
|
|
@@ -3647,16 +3616,6 @@ interface RuleOptions {
|
|
|
3647
3616
|
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
|
|
3648
3617
|
*/
|
|
3649
3618
|
'react/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
|
|
3650
|
-
/**
|
|
3651
|
-
* Disallows unnecessary usage of 'useCallback'.
|
|
3652
|
-
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-callback
|
|
3653
|
-
*/
|
|
3654
|
-
'react/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
|
|
3655
|
-
/**
|
|
3656
|
-
* Disallows unnecessary usage of 'useMemo'.
|
|
3657
|
-
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-memo
|
|
3658
|
-
*/
|
|
3659
|
-
'react/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
|
|
3660
3619
|
/**
|
|
3661
3620
|
* Enforces that a function with the 'use' prefix uses at least one Hook inside it.
|
|
3662
3621
|
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
|
|
@@ -3698,7 +3657,7 @@ interface RuleOptions {
|
|
|
3698
3657
|
*/
|
|
3699
3658
|
'react/no-unused-props'?: Linter.RuleEntry<[]>;
|
|
3700
3659
|
/**
|
|
3701
|
-
* Warns about
|
|
3660
|
+
* Warns about state variables that are defined but never used, or only used in effects.
|
|
3702
3661
|
* @see https://eslint-react.xyz/docs/rules/no-unused-state
|
|
3703
3662
|
*/
|
|
3704
3663
|
'react/no-unused-state'?: Linter.RuleEntry<[]>;
|
|
@@ -3707,21 +3666,6 @@ interface RuleOptions {
|
|
|
3707
3666
|
* @see https://eslint-react.xyz/docs/rules/no-use-context
|
|
3708
3667
|
*/
|
|
3709
3668
|
'react/no-use-context'?: Linter.RuleEntry<[]>;
|
|
3710
|
-
/**
|
|
3711
|
-
* Disallows useless fragment elements.
|
|
3712
|
-
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
3713
|
-
*/
|
|
3714
|
-
'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>;
|
|
3715
|
-
/**
|
|
3716
|
-
* Enforces destructuring assignment for component props and context.
|
|
3717
|
-
* @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
|
|
3718
|
-
*/
|
|
3719
|
-
'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
|
|
3720
|
-
/**
|
|
3721
|
-
* Enforces importing React via a namespace import.
|
|
3722
|
-
* @see https://eslint-react.xyz/docs/rules/prefer-namespace-import
|
|
3723
|
-
*/
|
|
3724
|
-
'react/prefer-namespace-import'?: Linter.RuleEntry<[]>;
|
|
3725
3669
|
/**
|
|
3726
3670
|
* Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
|
|
3727
3671
|
* @see https://eslint-react.xyz/docs/rules/purity
|
|
@@ -3732,6 +3676,11 @@ interface RuleOptions {
|
|
|
3732
3676
|
* @see https://eslint-react.xyz/docs/rules/refs
|
|
3733
3677
|
*/
|
|
3734
3678
|
'react/refs'?: Linter.RuleEntry<[]>;
|
|
3679
|
+
/**
|
|
3680
|
+
* Validates and transforms React Client/Server Function definitions.
|
|
3681
|
+
* @see https://eslint-react.xyz/docs/rules/function-definition
|
|
3682
|
+
*/
|
|
3683
|
+
'react/rsc-function-definition'?: Linter.RuleEntry<[]>;
|
|
3735
3684
|
/**
|
|
3736
3685
|
* Enforces the Rules of Hooks.
|
|
3737
3686
|
* @see https://react.dev/reference/rules/rules-of-hooks
|
|
@@ -3748,15 +3697,10 @@ interface RuleOptions {
|
|
|
3748
3697
|
*/
|
|
3749
3698
|
'react/set-state-in-render'?: Linter.RuleEntry<[]>;
|
|
3750
3699
|
/**
|
|
3751
|
-
*
|
|
3752
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
3753
|
-
*/
|
|
3754
|
-
'react/unstable-rules-of-props'?: Linter.RuleEntry<[]>;
|
|
3755
|
-
/**
|
|
3756
|
-
* Enforces the Rules of State.
|
|
3757
|
-
* @see https://eslint-react.xyz/docs/rules/unstable-rules-of-state
|
|
3700
|
+
* Validates that components are static, not recreated every render.
|
|
3701
|
+
* @see https://eslint-react.xyz/docs/rules/static-components
|
|
3758
3702
|
*/
|
|
3759
|
-
'react/
|
|
3703
|
+
'react/static-components'?: Linter.RuleEntry<[]>;
|
|
3760
3704
|
/**
|
|
3761
3705
|
* Validates against syntax that React Compiler does not support.
|
|
3762
3706
|
* @see https://eslint-react.xyz/docs/rules/unsupported-syntax
|
|
@@ -3772,6 +3716,296 @@ interface RuleOptions {
|
|
|
3772
3716
|
* @see https://eslint-react.xyz/docs/rules/use-state
|
|
3773
3717
|
*/
|
|
3774
3718
|
'react/use-state'?: Linter.RuleEntry<ReactUseState>;
|
|
3719
|
+
/**
|
|
3720
|
+
* Enforces that every 'addEventListener' in a component or custom hook has a corresponding 'removeEventListener'.
|
|
3721
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
|
|
3722
|
+
*/
|
|
3723
|
+
'react/web-api-no-leaked-event-listener'?: Linter.RuleEntry<[]>;
|
|
3724
|
+
/**
|
|
3725
|
+
* Enforces that every 'fetch' in a component or custom hook has a corresponding 'AbortController' abort in the cleanup function.
|
|
3726
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-fetch
|
|
3727
|
+
*/
|
|
3728
|
+
'react/web-api-no-leaked-fetch'?: Linter.RuleEntry<[]>;
|
|
3729
|
+
/**
|
|
3730
|
+
* Enforces that every 'setInterval' in a component or custom hook has a corresponding 'clearInterval'.
|
|
3731
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
|
|
3732
|
+
*/
|
|
3733
|
+
'react/web-api-no-leaked-interval'?: Linter.RuleEntry<[]>;
|
|
3734
|
+
/**
|
|
3735
|
+
* Enforces that every 'ResizeObserver' created in a component or custom hook has a corresponding 'ResizeObserver.disconnect()'.
|
|
3736
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
|
|
3737
|
+
*/
|
|
3738
|
+
'react/web-api-no-leaked-resize-observer'?: Linter.RuleEntry<[]>;
|
|
3739
|
+
/**
|
|
3740
|
+
* Enforces that every 'setTimeout' in a component or custom hook has a corresponding 'clearTimeout'.
|
|
3741
|
+
* @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
|
|
3742
|
+
*/
|
|
3743
|
+
'react/web-api-no-leaked-timeout'?: Linter.RuleEntry<[]>;
|
|
3744
|
+
/**
|
|
3745
|
+
* Validates usage of Error Boundaries instead of try/catch for errors in child components.
|
|
3746
|
+
* @see https://eslint-react.xyz/docs/rules/error-boundaries
|
|
3747
|
+
*/
|
|
3748
|
+
'react/x-error-boundaries'?: Linter.RuleEntry<[]>;
|
|
3749
|
+
/**
|
|
3750
|
+
* Verifies the list of dependencies for Hooks like 'useEffect' and similar.
|
|
3751
|
+
* @see https://github.com/facebook/react/issues/14920
|
|
3752
|
+
*/
|
|
3753
|
+
'react/x-exhaustive-deps'?: Linter.RuleEntry<ReactXExhaustiveDeps>;
|
|
3754
|
+
/**
|
|
3755
|
+
* Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
|
|
3756
|
+
* @see https://eslint-react.xyz/docs/rules/globals
|
|
3757
|
+
*/
|
|
3758
|
+
'react/x-globals'?: Linter.RuleEntry<[]>;
|
|
3759
|
+
/**
|
|
3760
|
+
* Validates against mutating props, state, and other values that are immutable.
|
|
3761
|
+
* @see https://eslint-react.xyz/docs/rules/immutability
|
|
3762
|
+
*/
|
|
3763
|
+
'react/x-immutability'?: Linter.RuleEntry<[]>;
|
|
3764
|
+
/**
|
|
3765
|
+
* Disallows accessing 'this.state' inside 'setState' calls.
|
|
3766
|
+
* @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
|
|
3767
|
+
*/
|
|
3768
|
+
'react/x-no-access-state-in-setstate'?: Linter.RuleEntry<[]>;
|
|
3769
|
+
/**
|
|
3770
|
+
* Disallows using an item's index in the array as its key.
|
|
3771
|
+
* @see https://eslint-react.xyz/docs/rules/no-array-index-key
|
|
3772
|
+
*/
|
|
3773
|
+
'react/x-no-array-index-key'?: Linter.RuleEntry<[]>;
|
|
3774
|
+
/**
|
|
3775
|
+
* Disallows the use of 'Children.count' from the 'react' package.
|
|
3776
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-count
|
|
3777
|
+
*/
|
|
3778
|
+
'react/x-no-children-count'?: Linter.RuleEntry<[]>;
|
|
3779
|
+
/**
|
|
3780
|
+
* Disallows the use of 'Children.forEach' from the 'react' package.
|
|
3781
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-for-each
|
|
3782
|
+
*/
|
|
3783
|
+
'react/x-no-children-for-each'?: Linter.RuleEntry<[]>;
|
|
3784
|
+
/**
|
|
3785
|
+
* Disallows the use of 'Children.map' from the 'react' package.
|
|
3786
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-map
|
|
3787
|
+
*/
|
|
3788
|
+
'react/x-no-children-map'?: Linter.RuleEntry<[]>;
|
|
3789
|
+
/**
|
|
3790
|
+
* Disallows the use of 'Children.only' from the 'react' package.
|
|
3791
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-only
|
|
3792
|
+
*/
|
|
3793
|
+
'react/x-no-children-only'?: Linter.RuleEntry<[]>;
|
|
3794
|
+
/**
|
|
3795
|
+
* Disallows the use of 'Children.toArray' from the 'react' package.
|
|
3796
|
+
* @see https://eslint-react.xyz/docs/rules/no-children-to-array
|
|
3797
|
+
*/
|
|
3798
|
+
'react/x-no-children-to-array'?: Linter.RuleEntry<[]>;
|
|
3799
|
+
/**
|
|
3800
|
+
* Disallows class components except for error boundaries.
|
|
3801
|
+
* @see https://eslint-react.xyz/docs/rules/no-class-component
|
|
3802
|
+
*/
|
|
3803
|
+
'react/x-no-class-component'?: Linter.RuleEntry<[]>;
|
|
3804
|
+
/**
|
|
3805
|
+
* Disallows 'cloneElement'.
|
|
3806
|
+
* @see https://eslint-react.xyz/docs/rules/no-clone-element
|
|
3807
|
+
*/
|
|
3808
|
+
'react/x-no-clone-element'?: Linter.RuleEntry<[]>;
|
|
3809
|
+
/**
|
|
3810
|
+
* Replaces usage of 'componentWillMount' with 'UNSAFE_componentWillMount'.
|
|
3811
|
+
* @see https://eslint-react.xyz/docs/rules/no-component-will-mount
|
|
3812
|
+
*/
|
|
3813
|
+
'react/x-no-component-will-mount'?: Linter.RuleEntry<[]>;
|
|
3814
|
+
/**
|
|
3815
|
+
* Replaces usage of 'componentWillReceiveProps' with 'UNSAFE_componentWillReceiveProps'.
|
|
3816
|
+
* @see https://eslint-react.xyz/docs/rules/no-component-will-receive-props
|
|
3817
|
+
*/
|
|
3818
|
+
'react/x-no-component-will-receive-props'?: Linter.RuleEntry<[]>;
|
|
3819
|
+
/**
|
|
3820
|
+
* Replaces usage of 'componentWillUpdate' with 'UNSAFE_componentWillUpdate'.
|
|
3821
|
+
* @see https://eslint-react.xyz/docs/rules/no-component-will-update
|
|
3822
|
+
*/
|
|
3823
|
+
'react/x-no-component-will-update'?: Linter.RuleEntry<[]>;
|
|
3824
|
+
/**
|
|
3825
|
+
* Replaces usage of '<Context.Provider>' with '<Context>'.
|
|
3826
|
+
* @see https://eslint-react.xyz/docs/rules/no-context-provider
|
|
3827
|
+
*/
|
|
3828
|
+
'react/x-no-context-provider'?: Linter.RuleEntry<[]>;
|
|
3829
|
+
/**
|
|
3830
|
+
* Disallows 'createRef' in function components.
|
|
3831
|
+
* @see https://eslint-react.xyz/docs/rules/no-create-ref
|
|
3832
|
+
*/
|
|
3833
|
+
'react/x-no-create-ref'?: Linter.RuleEntry<[]>;
|
|
3834
|
+
/**
|
|
3835
|
+
* Disallows direct mutation of 'this.state'.
|
|
3836
|
+
* @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
|
|
3837
|
+
*/
|
|
3838
|
+
'react/x-no-direct-mutation-state'?: Linter.RuleEntry<[]>;
|
|
3839
|
+
/**
|
|
3840
|
+
* Prevents duplicate 'key' props on sibling elements when rendering lists.
|
|
3841
|
+
* @see https://eslint-react.xyz/docs/rules/no-duplicate-key
|
|
3842
|
+
*/
|
|
3843
|
+
'react/x-no-duplicate-key'?: Linter.RuleEntry<[]>;
|
|
3844
|
+
/**
|
|
3845
|
+
* Replaces usage of 'forwardRef' with passing 'ref' as a prop.
|
|
3846
|
+
* @see https://eslint-react.xyz/docs/rules/no-forward-ref
|
|
3847
|
+
*/
|
|
3848
|
+
'react/x-no-forward-ref'?: Linter.RuleEntry<[]>;
|
|
3849
|
+
/**
|
|
3850
|
+
* Prevents implicitly passing the 'children' prop to components.
|
|
3851
|
+
* @see https://eslint-react.xyz/docs/rules/no-implicit-children
|
|
3852
|
+
*/
|
|
3853
|
+
'react/x-no-implicit-children'?: Linter.RuleEntry<[]>;
|
|
3854
|
+
/**
|
|
3855
|
+
* Prevents implicitly passing the 'key' prop to components.
|
|
3856
|
+
* @see https://eslint-react.xyz/docs/rules/no-implicit-key
|
|
3857
|
+
*/
|
|
3858
|
+
'react/x-no-implicit-key'?: Linter.RuleEntry<[]>;
|
|
3859
|
+
/**
|
|
3860
|
+
* Prevents implicitly passing the 'ref' prop to components.
|
|
3861
|
+
* @see https://eslint-react.xyz/docs/rules/no-implicit-ref
|
|
3862
|
+
*/
|
|
3863
|
+
'react/x-no-implicit-ref'?: Linter.RuleEntry<[]>;
|
|
3864
|
+
/**
|
|
3865
|
+
* Prevents problematic leaked values from being rendered.
|
|
3866
|
+
* @see https://eslint-react.xyz/docs/rules/no-leaked-conditional-rendering
|
|
3867
|
+
*/
|
|
3868
|
+
'react/x-no-leaked-conditional-rendering'?: Linter.RuleEntry<[]>;
|
|
3869
|
+
/**
|
|
3870
|
+
* Enforces that all components have a 'displayName' that can be used in DevTools.
|
|
3871
|
+
* @see https://eslint-react.xyz/docs/rules/no-missing-component-display-name
|
|
3872
|
+
*/
|
|
3873
|
+
'react/x-no-missing-component-display-name'?: Linter.RuleEntry<[]>;
|
|
3874
|
+
/**
|
|
3875
|
+
* Enforces that all contexts have a 'displayName' that can be used in DevTools.
|
|
3876
|
+
* @see https://eslint-react.xyz/docs/rules/no-missing-context-display-name
|
|
3877
|
+
*/
|
|
3878
|
+
'react/x-no-missing-context-display-name'?: Linter.RuleEntry<[]>;
|
|
3879
|
+
/**
|
|
3880
|
+
* Disallows missing 'key' on items in list rendering.
|
|
3881
|
+
* @see https://eslint-react.xyz/docs/rules/no-missing-key
|
|
3882
|
+
*/
|
|
3883
|
+
'react/x-no-missing-key'?: Linter.RuleEntry<[]>;
|
|
3884
|
+
/**
|
|
3885
|
+
* Prevents incorrect usage of 'captureOwnerStack'.
|
|
3886
|
+
* @see https://eslint-react.xyz/docs/rules/no-misused-capture-owner-stack
|
|
3887
|
+
*/
|
|
3888
|
+
'react/x-no-misused-capture-owner-stack'?: Linter.RuleEntry<[]>;
|
|
3889
|
+
/**
|
|
3890
|
+
* Disallows nesting component definitions inside other components.
|
|
3891
|
+
* @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
|
|
3892
|
+
*/
|
|
3893
|
+
'react/x-no-nested-component-definitions'?: Linter.RuleEntry<[]>;
|
|
3894
|
+
/**
|
|
3895
|
+
* Disallows nesting lazy component declarations inside other components or hooks.
|
|
3896
|
+
* @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
|
|
3897
|
+
*/
|
|
3898
|
+
'react/x-no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
|
|
3899
|
+
/**
|
|
3900
|
+
* Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
|
|
3901
|
+
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
|
|
3902
|
+
*/
|
|
3903
|
+
'react/x-no-set-state-in-component-did-mount'?: Linter.RuleEntry<[]>;
|
|
3904
|
+
/**
|
|
3905
|
+
* Disallows calling 'this.setState' in 'componentDidUpdate' outside functions such as callbacks.
|
|
3906
|
+
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-update
|
|
3907
|
+
*/
|
|
3908
|
+
'react/x-no-set-state-in-component-did-update'?: Linter.RuleEntry<[]>;
|
|
3909
|
+
/**
|
|
3910
|
+
* Disallows calling 'this.setState' in 'componentWillUpdate' outside functions such as callbacks.
|
|
3911
|
+
* @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
|
|
3912
|
+
*/
|
|
3913
|
+
'react/x-no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
|
|
3914
|
+
/**
|
|
3915
|
+
* Enforces that a function with the 'use' prefix uses at least one Hook inside it.
|
|
3916
|
+
* @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
|
|
3917
|
+
*/
|
|
3918
|
+
'react/x-no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>;
|
|
3919
|
+
/**
|
|
3920
|
+
* Warns about the use of 'UNSAFE_componentWillMount' in class components.
|
|
3921
|
+
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-mount
|
|
3922
|
+
*/
|
|
3923
|
+
'react/x-no-unsafe-component-will-mount'?: Linter.RuleEntry<[]>;
|
|
3924
|
+
/**
|
|
3925
|
+
* Warns about the use of 'UNSAFE_componentWillReceiveProps' in class components.
|
|
3926
|
+
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-receive-props
|
|
3927
|
+
*/
|
|
3928
|
+
'react/x-no-unsafe-component-will-receive-props'?: Linter.RuleEntry<[]>;
|
|
3929
|
+
/**
|
|
3930
|
+
* Warns about the use of 'UNSAFE_componentWillUpdate' in class components.
|
|
3931
|
+
* @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-update
|
|
3932
|
+
*/
|
|
3933
|
+
'react/x-no-unsafe-component-will-update'?: Linter.RuleEntry<[]>;
|
|
3934
|
+
/**
|
|
3935
|
+
* Prevents non-stable values (i.e., object literals) from being used as a value for 'Context.Provider'.
|
|
3936
|
+
* @see https://eslint-react.xyz/docs/rules/no-unstable-context-value
|
|
3937
|
+
*/
|
|
3938
|
+
'react/x-no-unstable-context-value'?: Linter.RuleEntry<[]>;
|
|
3939
|
+
/**
|
|
3940
|
+
* Prevents using referential-type values as default props in object destructuring.
|
|
3941
|
+
* @see https://eslint-react.xyz/docs/rules/no-unstable-default-props
|
|
3942
|
+
*/
|
|
3943
|
+
'react/x-no-unstable-default-props'?: Linter.RuleEntry<ReactXNoUnstableDefaultProps>;
|
|
3944
|
+
/**
|
|
3945
|
+
* Warns about unused class component methods and properties.
|
|
3946
|
+
* @see https://eslint-react.xyz/docs/rules/no-unused-class-component-members
|
|
3947
|
+
*/
|
|
3948
|
+
'react/x-no-unused-class-component-members'?: Linter.RuleEntry<[]>;
|
|
3949
|
+
/**
|
|
3950
|
+
* Warns about component props that are defined but never used.
|
|
3951
|
+
* @see https://eslint-react.xyz/docs/rules/no-unused-props
|
|
3952
|
+
*/
|
|
3953
|
+
'react/x-no-unused-props'?: Linter.RuleEntry<[]>;
|
|
3954
|
+
/**
|
|
3955
|
+
* Warns about state variables that are defined but never used, or only used in effects.
|
|
3956
|
+
* @see https://eslint-react.xyz/docs/rules/no-unused-state
|
|
3957
|
+
*/
|
|
3958
|
+
'react/x-no-unused-state'?: Linter.RuleEntry<[]>;
|
|
3959
|
+
/**
|
|
3960
|
+
* Replaces usage of 'useContext' with 'use'.
|
|
3961
|
+
* @see https://eslint-react.xyz/docs/rules/no-use-context
|
|
3962
|
+
*/
|
|
3963
|
+
'react/x-no-use-context'?: Linter.RuleEntry<[]>;
|
|
3964
|
+
/**
|
|
3965
|
+
* Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
|
|
3966
|
+
* @see https://eslint-react.xyz/docs/rules/purity
|
|
3967
|
+
*/
|
|
3968
|
+
'react/x-purity'?: Linter.RuleEntry<[]>;
|
|
3969
|
+
/**
|
|
3970
|
+
* Validates correct usage of refs by checking that 'ref.current' is not read or written during render.
|
|
3971
|
+
* @see https://eslint-react.xyz/docs/rules/refs
|
|
3972
|
+
*/
|
|
3973
|
+
'react/x-refs'?: Linter.RuleEntry<[]>;
|
|
3974
|
+
/**
|
|
3975
|
+
* Enforces the Rules of Hooks.
|
|
3976
|
+
* @see https://react.dev/reference/rules/rules-of-hooks
|
|
3977
|
+
*/
|
|
3978
|
+
'react/x-rules-of-hooks'?: Linter.RuleEntry<ReactXRulesOfHooks>;
|
|
3979
|
+
/**
|
|
3980
|
+
* Validates against setting state synchronously in an effect, which can lead to re-renders that degrade performance.
|
|
3981
|
+
* @see https://eslint-react.xyz/docs/rules/set-state-in-effect
|
|
3982
|
+
*/
|
|
3983
|
+
'react/x-set-state-in-effect'?: Linter.RuleEntry<[]>;
|
|
3984
|
+
/**
|
|
3985
|
+
* Validates against unconditionally setting state during render, which can trigger additional renders and potential infinite render loops.
|
|
3986
|
+
* @see https://eslint-react.xyz/docs/rules/set-state-in-render
|
|
3987
|
+
*/
|
|
3988
|
+
'react/x-set-state-in-render'?: Linter.RuleEntry<[]>;
|
|
3989
|
+
/**
|
|
3990
|
+
* Validates that components are static, not recreated every render.
|
|
3991
|
+
* @see https://eslint-react.xyz/docs/rules/static-components
|
|
3992
|
+
*/
|
|
3993
|
+
'react/x-static-components'?: Linter.RuleEntry<[]>;
|
|
3994
|
+
/**
|
|
3995
|
+
* Validates against syntax that React Compiler does not support.
|
|
3996
|
+
* @see https://eslint-react.xyz/docs/rules/unsupported-syntax
|
|
3997
|
+
*/
|
|
3998
|
+
'react/x-unsupported-syntax'?: Linter.RuleEntry<[]>;
|
|
3999
|
+
/**
|
|
4000
|
+
* Validates that 'useMemo' is called with a callback that returns a value.
|
|
4001
|
+
* @see https://eslint-react.xyz/docs/rules/use-memo
|
|
4002
|
+
*/
|
|
4003
|
+
'react/x-use-memo'?: Linter.RuleEntry<[]>;
|
|
4004
|
+
/**
|
|
4005
|
+
* Enforces correct usage of 'useState', including destructuring, symmetric naming of the value and setter, and wrapping expensive initializers in a lazy initializer function.
|
|
4006
|
+
* @see https://eslint-react.xyz/docs/rules/use-state
|
|
4007
|
+
*/
|
|
4008
|
+
'react/x-use-state'?: Linter.RuleEntry<ReactXUseState>;
|
|
3775
4009
|
/**
|
|
3776
4010
|
* disallow confusing quantifiers
|
|
3777
4011
|
* @see https://ota-meshi.github.io/eslint-plugin-regexp/rules/confusing-quantifier.html
|
|
@@ -6776,7 +7010,7 @@ interface RuleOptions {
|
|
|
6776
7010
|
*/
|
|
6777
7011
|
'test/no-mocks-import'?: Linter.RuleEntry<[]>;
|
|
6778
7012
|
/**
|
|
6779
|
-
* disallow
|
|
7013
|
+
* disallow focused/only tests
|
|
6780
7014
|
* @see https://github.com/levibuzolic/eslint-plugin-no-only-tests
|
|
6781
7015
|
*/
|
|
6782
7016
|
'test/no-only-tests'?: Linter.RuleEntry<TestNoOnlyTests>;
|
|
@@ -6901,7 +7135,7 @@ interface RuleOptions {
|
|
|
6901
7135
|
*/
|
|
6902
7136
|
'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
|
|
6903
7137
|
/**
|
|
6904
|
-
* enforce using `
|
|
7138
|
+
* enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof ...).toBe(...)`
|
|
6905
7139
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
|
|
6906
7140
|
*/
|
|
6907
7141
|
'test/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
|
|
@@ -9268,7 +9502,7 @@ interface RuleOptions {
|
|
|
9268
9502
|
* disallow object, array, and function literals in template
|
|
9269
9503
|
* @see https://eslint.vuejs.org/rules/no-literals-in-template.html
|
|
9270
9504
|
*/
|
|
9271
|
-
'vue/no-literals-in-template'?: Linter.RuleEntry<
|
|
9505
|
+
'vue/no-literals-in-template'?: Linter.RuleEntry<VueNoLiteralsInTemplate>;
|
|
9272
9506
|
/**
|
|
9273
9507
|
* disallow unnecessary `<template>`
|
|
9274
9508
|
* @see https://eslint.vuejs.org/rules/no-lone-template.html
|
|
@@ -9661,6 +9895,11 @@ interface RuleOptions {
|
|
|
9661
9895
|
* @see https://eslint.vuejs.org/rules/prefer-separate-static-class.html
|
|
9662
9896
|
*/
|
|
9663
9897
|
'vue/prefer-separate-static-class'?: Linter.RuleEntry<[]>;
|
|
9898
|
+
/**
|
|
9899
|
+
* enforce passing a single argument to custom event emissions
|
|
9900
|
+
* @see https://eslint.vuejs.org/rules/prefer-single-event-payload.html
|
|
9901
|
+
*/
|
|
9902
|
+
'vue/prefer-single-event-payload'?: Linter.RuleEntry<[]>;
|
|
9664
9903
|
/**
|
|
9665
9904
|
* Require template literals instead of string concatenation in `<template>`
|
|
9666
9905
|
* @see https://eslint.vuejs.org/rules/prefer-template.html
|
|
@@ -9676,6 +9915,11 @@ interface RuleOptions {
|
|
|
9676
9915
|
* @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
|
|
9677
9916
|
*/
|
|
9678
9917
|
'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>;
|
|
9918
|
+
/**
|
|
9919
|
+
* enforce using `v-model` instead of `:prop`/`@update:prop` pair
|
|
9920
|
+
* @see https://eslint.vuejs.org/rules/prefer-v-model.html
|
|
9921
|
+
*/
|
|
9922
|
+
'vue/prefer-v-model'?: Linter.RuleEntry<[]>;
|
|
9679
9923
|
/**
|
|
9680
9924
|
* enforce specific casing for the Prop name in Vue components
|
|
9681
9925
|
* @see https://eslint.vuejs.org/rules/prop-name-casing.html
|
|
@@ -12586,7 +12830,6 @@ type NodeNoUnpublishedBin = [] | [{
|
|
|
12586
12830
|
exclude?: string[];
|
|
12587
12831
|
replace: [string, string];
|
|
12588
12832
|
})[]]);
|
|
12589
|
-
[k: string]: unknown | undefined;
|
|
12590
12833
|
}]; // ----- node/no-unpublished-import -----
|
|
12591
12834
|
type NodeNoUnpublishedImport = [] | [{
|
|
12592
12835
|
allowModules?: string[];
|
|
@@ -12640,7 +12883,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
|
|
|
12640
12883
|
type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
|
|
12641
12884
|
version?: string;
|
|
12642
12885
|
allowExperimental?: boolean;
|
|
12643
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
|
|
12886
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.locks" | "navigator.locks.request" | "navigator.locks.query" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decapsulateBits" | "crypto.subtle.decapsulateKey" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encapsulateBits" | "crypto.subtle.encapsulateKey" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.getPublicKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "SubtleCrypto.supports" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decapsulateBits" | "crypto.webcrypto.subtle.decapsulateKey" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encapsulateBits" | "crypto.webcrypto.subtle.encapsulateKey" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.getPublicKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.argon2" | "crypto.argon2Sync" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.decapsulate" | "crypto.diffieHellman" | "crypto.encapsulate" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.mkdtempDisposable" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.mkdtempDisposableSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.Utf8Stream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.mkdtempDisposable" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent()" | "http.Agent" | "http.ClientRequest()" | "http.ClientRequest" | "http.Server()" | "http.Server" | "http.ServerResponse()" | "http.ServerResponse" | "http.IncomingMessage()" | "http.IncomingMessage" | "http.OutgoingMessage()" | "http.OutgoingMessage" | "http.WebSocket()" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.webSocketCreated" | "inspector.Network.webSocketHandshakeResponseReceived" | "inspector.Network.webSocketClosed" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.Network.webSocketCreated" | "inspector/promises.Network.webSocketHandshakeResponseReceived" | "inspector/promises.Network.webSocketClosed" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.eventLoopUtilization" | "perf_hooks.timerify" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getAssetKeys" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getAssetKeys" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "_stream_duplex" | "_stream_passthrough" | "_stream_readable" | "_stream_transform" | "_stream_wrap" | "_stream_writable" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.Session" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.property" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "_tls_common" | "_tls_wrap" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "v8.startCpuProfile" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.threadName" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.locks" | "worker_threads.locks.request" | "worker_threads.locks.query" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
|
|
12644
12887
|
}]; // ----- node/prefer-global/buffer -----
|
|
12645
12888
|
type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
|
|
12646
12889
|
type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
|
|
@@ -13099,6 +13342,7 @@ type PerfectionistSortClasses = {
|
|
|
13099
13342
|
matchesAstSelector?: string;
|
|
13100
13343
|
};
|
|
13101
13344
|
useExperimentalDependencyDetection?: boolean;
|
|
13345
|
+
newlinesBetweenOverloadSignatures?: ("ignore" | number);
|
|
13102
13346
|
ignoreCallbackDependenciesPatterns?: (({
|
|
13103
13347
|
pattern: string;
|
|
13104
13348
|
flags?: string;
|
|
@@ -14462,6 +14706,7 @@ type PerfectionistSortModules = [] | [{
|
|
|
14462
14706
|
})[];
|
|
14463
14707
|
newlinesBetween?: ("ignore" | number);
|
|
14464
14708
|
useExperimentalDependencyDetection?: boolean;
|
|
14709
|
+
newlinesBetweenOverloadSignatures?: ("ignore" | number);
|
|
14465
14710
|
partitionByComment?: (boolean | (({
|
|
14466
14711
|
pattern: string;
|
|
14467
14712
|
flags?: string;
|
|
@@ -15451,31 +15696,29 @@ type Quotes = [] | [("single" | "double" | "backtick")] | [("single" | "double"
|
|
|
15451
15696
|
avoidEscape?: boolean;
|
|
15452
15697
|
allowTemplateLiterals?: boolean;
|
|
15453
15698
|
})]; // ----- radix -----
|
|
15454
|
-
type Radix = [] | [("always" | "as-needed")]; // ----- react-
|
|
15455
|
-
type ReactDomNoUnknownProperty = [] | [{
|
|
15456
|
-
ignore?: string[];
|
|
15457
|
-
requireDataLowercase?: boolean;
|
|
15458
|
-
}]; // ----- react-refresh/only-export-components -----
|
|
15699
|
+
type Radix = [] | [("always" | "as-needed")]; // ----- react-refresh/only-export-components -----
|
|
15459
15700
|
type ReactRefreshOnlyExportComponents = [] | [{
|
|
15460
15701
|
extraHOCs?: string[];
|
|
15461
15702
|
allowExportNames?: string[];
|
|
15462
15703
|
allowConstantExport?: boolean;
|
|
15463
15704
|
checkJS?: boolean;
|
|
15705
|
+
}]; // ----- react/dom-no-unknown-property -----
|
|
15706
|
+
type ReactDomNoUnknownProperty = [] | [{
|
|
15707
|
+
ignore?: string[];
|
|
15708
|
+
requireDataLowercase?: boolean;
|
|
15464
15709
|
}]; // ----- react/exhaustive-deps -----
|
|
15465
15710
|
type ReactExhaustiveDeps = [] | [{
|
|
15466
15711
|
additionalHooks?: string;
|
|
15467
15712
|
enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
|
|
15468
15713
|
experimental_autoDependenciesHooks?: string[];
|
|
15469
15714
|
requireExplicitEffectDeps?: boolean;
|
|
15470
|
-
}]; // ----- react/jsx-
|
|
15471
|
-
type
|
|
15472
|
-
type ReactJsxShorthandFragment = [] | [(-1 | 1)]; // ----- react/no-unstable-default-props -----
|
|
15473
|
-
type ReactNoUnstableDefaultProps = [] | [{
|
|
15474
|
-
safeDefaultProps?: string[];
|
|
15475
|
-
}]; // ----- react/no-useless-fragment -----
|
|
15476
|
-
type ReactNoUselessFragment = [] | [{
|
|
15715
|
+
}]; // ----- react/jsx-no-useless-fragment -----
|
|
15716
|
+
type ReactJsxNoUselessFragment = [] | [{
|
|
15477
15717
|
allowEmptyFragment?: boolean;
|
|
15478
15718
|
allowExpressions?: boolean;
|
|
15719
|
+
}]; // ----- react/no-unstable-default-props -----
|
|
15720
|
+
type ReactNoUnstableDefaultProps = [] | [{
|
|
15721
|
+
safeDefaultProps?: string[];
|
|
15479
15722
|
}]; // ----- react/rules-of-hooks -----
|
|
15480
15723
|
type ReactRulesOfHooks = [] | [{
|
|
15481
15724
|
additionalHooks?: string;
|
|
@@ -15484,6 +15727,23 @@ type ReactUseState = [] | [{
|
|
|
15484
15727
|
enforceAssignment?: boolean;
|
|
15485
15728
|
enforceLazyInitialization?: boolean;
|
|
15486
15729
|
enforceSetterName?: boolean;
|
|
15730
|
+
}]; // ----- react/x-exhaustive-deps -----
|
|
15731
|
+
type ReactXExhaustiveDeps = [] | [{
|
|
15732
|
+
additionalHooks?: string;
|
|
15733
|
+
enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
|
|
15734
|
+
experimental_autoDependenciesHooks?: string[];
|
|
15735
|
+
requireExplicitEffectDeps?: boolean;
|
|
15736
|
+
}]; // ----- react/x-no-unstable-default-props -----
|
|
15737
|
+
type ReactXNoUnstableDefaultProps = [] | [{
|
|
15738
|
+
safeDefaultProps?: string[];
|
|
15739
|
+
}]; // ----- react/x-rules-of-hooks -----
|
|
15740
|
+
type ReactXRulesOfHooks = [] | [{
|
|
15741
|
+
additionalHooks?: string;
|
|
15742
|
+
}]; // ----- react/x-use-state -----
|
|
15743
|
+
type ReactXUseState = [] | [{
|
|
15744
|
+
enforceAssignment?: boolean;
|
|
15745
|
+
enforceLazyInitialization?: boolean;
|
|
15746
|
+
enforceSetterName?: boolean;
|
|
15487
15747
|
}]; // ----- regexp/hexadecimal-escape -----
|
|
15488
15748
|
type RegexpHexadecimalEscape = [] | [("always" | "never")]; // ----- regexp/letter-case -----
|
|
15489
15749
|
type RegexpLetterCase = [] | [{
|
|
@@ -19223,6 +19483,9 @@ type VueNoIrregularWhitespace = [] | [{
|
|
|
19223
19483
|
skipRegExps?: boolean;
|
|
19224
19484
|
skipHTMLAttributeValues?: boolean;
|
|
19225
19485
|
skipHTMLTextContents?: boolean;
|
|
19486
|
+
}]; // ----- vue/no-literals-in-template -----
|
|
19487
|
+
type VueNoLiteralsInTemplate = [] | [{
|
|
19488
|
+
ignores?: string[];
|
|
19226
19489
|
}]; // ----- vue/no-lone-template -----
|
|
19227
19490
|
type VueNoLoneTemplate = [] | [{
|
|
19228
19491
|
ignoreAccessible?: boolean;
|
|
@@ -19377,7 +19640,7 @@ type VueNoUnusedComponents = [] | [{
|
|
|
19377
19640
|
ignoreWhenBindingPresent?: boolean;
|
|
19378
19641
|
}]; // ----- vue/no-unused-properties -----
|
|
19379
19642
|
type VueNoUnusedProperties = [] | [{
|
|
19380
|
-
groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup")[];
|
|
19643
|
+
groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup" | "inject")[];
|
|
19381
19644
|
deepData?: boolean;
|
|
19382
19645
|
ignorePublicMembers?: boolean;
|
|
19383
19646
|
unreferencedOptions?: ("unknownMemberAsUnreferenced" | "returnAsUnreferenced")[];
|
|
@@ -19774,7 +20037,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
|
|
|
19774
20037
|
exceptRange?: boolean;
|
|
19775
20038
|
onlyEquality?: boolean;
|
|
19776
20039
|
}]; // Names of all the configs
|
|
19777
|
-
type ConfigNames = 'vinicunca/gitignore' | 'vinicunca/ignores' | 'vinicunca/javascript/setup' | 'vinicunca/javascript/rules' | 'vinicunca/eslint-comments/rules' | 'vinicunca/command/rules' | 'vinicunca/
|
|
20040
|
+
type ConfigNames = 'vinicunca/gitignore' | 'vinicunca/ignores' | 'vinicunca/javascript/setup' | 'vinicunca/javascript/rules' | 'vinicunca/eslint-comments/rules' | 'vinicunca/command/rules' | 'vinicunca/sonar/rules' | 'vinicunca/perfectionist/rules' | 'vinicunca/node/rules' | 'vinicunca/jsdoc/setup' | 'vinicunca/jsdoc/rules' | 'vinicunca/imports/rules' | 'vinicunca/e18e/rules' | 'vinicunca/unicorn/rules' | 'antfu/jsx/setup' | 'vinicunca/typescript/setup' | 'vinicunca/typescript/parser' | 'vinicunca/typescript/type-aware-parser' | 'vinicunca/typescript/rules' | 'vinicunca/typescript/rules-type-aware' | 'antfu/typescript/erasable-syntax-only' | 'vinicunca/stylistic/rules' | 'vinicunca/regexp/rules' | 'vinicunca/test/setup' | 'vinicunca/test/rules' | 'vinicunca/vue/setup' | 'vinicunca/vue/rules' | 'vinicunca/react/setup' | 'vinicunca/react/rules' | 'vinicunca/react/typescript' | 'vinicunca/react/type-aware-rules' | 'vinicunca/nextjs/setup' | 'vinicunca/nextjs/rules' | 'vinicunca/solid/setup' | 'vinicunca/solid/rules' | 'vinicunca/svelte/setup' | 'vinicunca/svelte/rules' | 'vinicunca/unocss' | 'vinicunca/astro/setup' | 'vinicunca/astro/rules' | 'vinicunca/jsonc/setup' | 'vinicunca/jsonc/rules' | 'vinicunca/sort/package-json' | 'vinicunca/sort/tsconfig' | 'vinicunca/pnpm/package-json' | 'vinicunca/pnpm/pnpm-workspace-yaml' | 'vinicunca/pnpm/pnpm-workspace-yaml-sort' | 'vinicunca/yaml/setup' | 'vinicunca/yaml/rules' | 'vinicunca/toml/setup' | 'vinicunca/toml/rules' | 'vinicunca/markdown/setup' | 'vinicunca/markdown/processor' | 'vinicunca/markdown/parser' | 'vinicunca/markdown/rules' | 'vinicunca/markdown/disables/markdown' | 'vinicunca/markdown/disables' | 'vinicunca/formatter/setup' | 'vinicunca/formatter/css' | 'vinicunca/formatter/scss' | 'vinicunca/formatter/less' | 'vinicunca/formatter/html' | 'vinicunca/formatter/xml' | 'vinicunca/formatter/svg' | 'vinicunca/formatter/markdown' | 'vinicunca/formatter/astro' | 'vinicunca/formatter/astro/disables' | 'vinicunca/formatter/graphql' | 'vinicunca/disables/scripts' | 'vinicunca/disables/cli' | 'vinicunca/disables/bin' | 'vinicunca/disables/dts' | 'vinicunca/disables/cjs' | 'vinicunca/disables/config-files';
|
|
19778
20041
|
//#endregion
|
|
19779
20042
|
//#region src/vendor/prettier-types.d.ts
|
|
19780
20043
|
/**
|
|
@@ -20109,7 +20372,7 @@ interface OptionsHasTypeScript {
|
|
|
20109
20372
|
interface OptionsStylistic {
|
|
20110
20373
|
stylistic?: boolean | StylisticConfig;
|
|
20111
20374
|
}
|
|
20112
|
-
interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi' | 'experimental'> {}
|
|
20375
|
+
interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi' | 'experimental' | 'braceStyle'> {}
|
|
20113
20376
|
interface OptionsOverrides {
|
|
20114
20377
|
overrides?: TypedFlatConfigItem['rules'];
|
|
20115
20378
|
}
|
|
@@ -20255,6 +20518,12 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
20255
20518
|
* @default true
|
|
20256
20519
|
*/
|
|
20257
20520
|
unicorn?: boolean | OptionsUnicorn;
|
|
20521
|
+
/**
|
|
20522
|
+
* Options for eslint-plugin-perfectionist.
|
|
20523
|
+
*
|
|
20524
|
+
* @default true
|
|
20525
|
+
*/
|
|
20526
|
+
perfectionist?: boolean | OptionsOverrides;
|
|
20258
20527
|
/**
|
|
20259
20528
|
* Options for eslint-plugin-import-lite.
|
|
20260
20529
|
*
|
|
@@ -20400,10 +20669,6 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
20400
20669
|
//#region src/base.d.ts
|
|
20401
20670
|
declare const defaultPluginRenaming: {
|
|
20402
20671
|
'@eslint-react': string;
|
|
20403
|
-
'@eslint-react/dom': string;
|
|
20404
|
-
'@eslint-react/naming-convention': string;
|
|
20405
|
-
'@eslint-react/rsc': string;
|
|
20406
|
-
'@eslint-react/web-api': string;
|
|
20407
20672
|
'@next/next': string;
|
|
20408
20673
|
'@stylistic': string;
|
|
20409
20674
|
'@typescript-eslint': string;
|
|
@@ -20477,7 +20742,7 @@ declare function node(): Promise<Array<TypedFlatConfigItem>>;
|
|
|
20477
20742
|
*
|
|
20478
20743
|
* @see https://github.com/azat-io/eslint-plugin-perfectionist
|
|
20479
20744
|
*/
|
|
20480
|
-
declare function perfectionist(): Promise<Array<TypedFlatConfigItem>>;
|
|
20745
|
+
declare function perfectionist(options: OptionsOverrides): Promise<Array<TypedFlatConfigItem>>;
|
|
20481
20746
|
//#endregion
|
|
20482
20747
|
//#region src/configs/pnpm.d.ts
|
|
20483
20748
|
declare function pnpm(options: OptionsPnpm): Promise<Array<TypedFlatConfigItem>>;
|