@vinicunca/eslint-config 5.0.0 → 5.2.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 +567 -214
- package/dist/index.mjs +25 -25
- package/dist/{lib-D13rzY6d.mjs → lib-8varpJW2.mjs} +274 -237
- package/package.json +52 -48
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-
|
|
3399
|
-
/**
|
|
3400
|
-
* Enforces importing React DOM via a namespace import.
|
|
3401
|
-
* @see https://eslint-react.xyz/docs/rules/dom-prefer-namespace-import
|
|
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<[]>;
|
|
3393
|
+
'react/dom-no-void-elements-with-children'?: Linter.RuleEntry<[]>;
|
|
3409
3394
|
/**
|
|
3410
|
-
*
|
|
3411
|
-
* @see https://eslint-react.xyz/docs/rules/
|
|
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/jsx-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/jsx-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/jsx-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/jsx-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/jsx-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/jsx-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/jsx-
|
|
3445
|
+
* Disallow JSX namespace syntax, as React does not support them.
|
|
3446
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-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/jsx-
|
|
3450
|
+
* Disallows useless fragment elements.
|
|
3451
|
+
* @see https://eslint-react.xyz/docs/rules/jsx-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 identifier names assigned from `createContext` calls 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/rsc-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
|
|
@@ -4378,7 +4612,7 @@ interface RuleOptions {
|
|
|
4378
4612
|
*/
|
|
4379
4613
|
'sonar/aws-ec2-rds-dms-public'?: Linter.RuleEntry<[]>;
|
|
4380
4614
|
/**
|
|
4381
|
-
*
|
|
4615
|
+
* EBS volumes should be encrypted
|
|
4382
4616
|
* @see https://sonarsource.github.io/rspec/#/rspec/S6275/javascript
|
|
4383
4617
|
*/
|
|
4384
4618
|
'sonar/aws-ec2-unencrypted-ebs-volume'?: Linter.RuleEntry<[]>;
|
|
@@ -4388,7 +4622,7 @@ interface RuleOptions {
|
|
|
4388
4622
|
*/
|
|
4389
4623
|
'sonar/aws-efs-unencrypted'?: Linter.RuleEntry<[]>;
|
|
4390
4624
|
/**
|
|
4391
|
-
* Policies
|
|
4625
|
+
* Policies should not grant all privileges
|
|
4392
4626
|
* @see https://sonarsource.github.io/rspec/#/rspec/S6302/javascript
|
|
4393
4627
|
*/
|
|
4394
4628
|
'sonar/aws-iam-all-privileges'?: Linter.RuleEntry<[]>;
|
|
@@ -4403,17 +4637,17 @@ interface RuleOptions {
|
|
|
4403
4637
|
*/
|
|
4404
4638
|
'sonar/aws-iam-privilege-escalation'?: Linter.RuleEntry<[]>;
|
|
4405
4639
|
/**
|
|
4406
|
-
*
|
|
4640
|
+
* AWS resource-based policies should not grant public access
|
|
4407
4641
|
* @see https://sonarsource.github.io/rspec/#/rspec/S6270/javascript
|
|
4408
4642
|
*/
|
|
4409
4643
|
'sonar/aws-iam-public-access'?: Linter.RuleEntry<[]>;
|
|
4410
4644
|
/**
|
|
4411
|
-
*
|
|
4645
|
+
* OpenSearch domains should have encryption at rest enabled
|
|
4412
4646
|
* @see https://sonarsource.github.io/rspec/#/rspec/S6308/javascript
|
|
4413
4647
|
*/
|
|
4414
4648
|
'sonar/aws-opensearchservice-domain'?: Linter.RuleEntry<[]>;
|
|
4415
4649
|
/**
|
|
4416
|
-
*
|
|
4650
|
+
* Amazon RDS resources should be encrypted at rest
|
|
4417
4651
|
* @see https://sonarsource.github.io/rspec/#/rspec/S6303/javascript
|
|
4418
4652
|
*/
|
|
4419
4653
|
'sonar/aws-rds-unencrypted-databases'?: Linter.RuleEntry<[]>;
|
|
@@ -4423,7 +4657,7 @@ interface RuleOptions {
|
|
|
4423
4657
|
*/
|
|
4424
4658
|
'sonar/aws-restricted-ip-admin-access'?: Linter.RuleEntry<[]>;
|
|
4425
4659
|
/**
|
|
4426
|
-
*
|
|
4660
|
+
* S3 buckets should not grant access to all users or authenticated users
|
|
4427
4661
|
* @see https://sonarsource.github.io/rspec/#/rspec/S6265/javascript
|
|
4428
4662
|
*/
|
|
4429
4663
|
'sonar/aws-s3-bucket-granted-access'?: Linter.RuleEntry<[]>;
|
|
@@ -4459,7 +4693,7 @@ interface RuleOptions {
|
|
|
4459
4693
|
*/
|
|
4460
4694
|
'sonar/aws-sns-unencrypted-topics'?: Linter.RuleEntry<[]>;
|
|
4461
4695
|
/**
|
|
4462
|
-
*
|
|
4696
|
+
* SQS queues should be encrypted
|
|
4463
4697
|
* @see https://sonarsource.github.io/rspec/#/rspec/S6330/javascript
|
|
4464
4698
|
*/
|
|
4465
4699
|
'sonar/aws-sqs-unencrypted-queue'?: Linter.RuleEntry<[]>;
|
|
@@ -4546,7 +4780,7 @@ interface RuleOptions {
|
|
|
4546
4780
|
*/
|
|
4547
4781
|
'sonar/constructor-for-side-effects'?: Linter.RuleEntry<[]>;
|
|
4548
4782
|
/**
|
|
4549
|
-
*
|
|
4783
|
+
* HTTP request content length should be limited
|
|
4550
4784
|
* @see https://sonarsource.github.io/rspec/#/rspec/S5693/javascript
|
|
4551
4785
|
*/
|
|
4552
4786
|
'sonar/content-length'?: Linter.RuleEntry<SonarContentLength>;
|
|
@@ -4567,7 +4801,7 @@ interface RuleOptions {
|
|
|
4567
4801
|
*/
|
|
4568
4802
|
'sonar/cookies'?: Linter.RuleEntry<[]>;
|
|
4569
4803
|
/**
|
|
4570
|
-
*
|
|
4804
|
+
* Cross-Origin Resource Sharing (CORS) policy should be restricted to trusted origins
|
|
4571
4805
|
* @see https://sonarsource.github.io/rspec/#/rspec/S5122/javascript
|
|
4572
4806
|
*/
|
|
4573
4807
|
'sonar/cors'?: Linter.RuleEntry<[]>;
|
|
@@ -4622,6 +4856,11 @@ interface RuleOptions {
|
|
|
4622
4856
|
* @deprecated
|
|
4623
4857
|
*/
|
|
4624
4858
|
'sonar/dns-prefetching'?: Linter.RuleEntry<[]>;
|
|
4859
|
+
/**
|
|
4860
|
+
* DOMPurify configuration should not be bypassable
|
|
4861
|
+
* @see https://sonarsource.github.io/rspec/#/rspec/S8479/javascript
|
|
4862
|
+
*/
|
|
4863
|
+
'sonar/dompurify-unsafe-config'?: Linter.RuleEntry<[]>;
|
|
4625
4864
|
/**
|
|
4626
4865
|
* Character classes in regular expressions should not contain the same character twice
|
|
4627
4866
|
* @see https://sonarsource.github.io/rspec/#/rspec/S5869/javascript
|
|
@@ -4759,7 +4998,7 @@ interface RuleOptions {
|
|
|
4759
4998
|
*/
|
|
4760
4999
|
'sonar/index-of-compare-to-positive-number'?: Linter.RuleEntry<[]>;
|
|
4761
5000
|
/**
|
|
4762
|
-
*
|
|
5001
|
+
* Cookies should have the "secure" flag
|
|
4763
5002
|
* @see https://sonarsource.github.io/rspec/#/rspec/S2092/javascript
|
|
4764
5003
|
*/
|
|
4765
5004
|
'sonar/insecure-cookie'?: Linter.RuleEntry<[]>;
|
|
@@ -4784,7 +5023,7 @@ interface RuleOptions {
|
|
|
4784
5023
|
*/
|
|
4785
5024
|
'sonar/label-position'?: Linter.RuleEntry<[]>;
|
|
4786
5025
|
/**
|
|
4787
|
-
*
|
|
5026
|
+
* Opened windows should not have access to the originating page
|
|
4788
5027
|
* @see https://sonarsource.github.io/rspec/#/rspec/S5148/javascript
|
|
4789
5028
|
*/
|
|
4790
5029
|
'sonar/link-with-target-blank'?: Linter.RuleEntry<[]>;
|
|
@@ -4999,7 +5238,7 @@ interface RuleOptions {
|
|
|
4999
5238
|
*/
|
|
5000
5239
|
'sonar/no-gratuitous-expressions'?: Linter.RuleEntry<[]>;
|
|
5001
5240
|
/**
|
|
5002
|
-
*
|
|
5241
|
+
* IP addresses should not be hardcoded
|
|
5003
5242
|
* @see https://sonarsource.github.io/rspec/#/rspec/S1313/javascript
|
|
5004
5243
|
*/
|
|
5005
5244
|
'sonar/no-hardcoded-ip'?: Linter.RuleEntry<[]>;
|
|
@@ -5301,8 +5540,9 @@ interface RuleOptions {
|
|
|
5301
5540
|
*/
|
|
5302
5541
|
'sonar/no-uniq-key'?: Linter.RuleEntry<[]>;
|
|
5303
5542
|
/**
|
|
5304
|
-
* Expanding archive files without controlling resource consumption
|
|
5543
|
+
* Expanding archive files should not be done without controlling resource consumption
|
|
5305
5544
|
* @see https://sonarsource.github.io/rspec/#/rspec/S5042/javascript
|
|
5545
|
+
* @deprecated
|
|
5306
5546
|
*/
|
|
5307
5547
|
'sonar/no-unsafe-unzip'?: Linter.RuleEntry<[]>;
|
|
5308
5548
|
/**
|
|
@@ -5478,7 +5718,7 @@ interface RuleOptions {
|
|
|
5478
5718
|
*/
|
|
5479
5719
|
'sonar/public-static-readonly'?: Linter.RuleEntry<[]>;
|
|
5480
5720
|
/**
|
|
5481
|
-
*
|
|
5721
|
+
* Temporary files should not be created in publicly writable directories
|
|
5482
5722
|
* @see https://sonarsource.github.io/rspec/#/rspec/S5443/javascript
|
|
5483
5723
|
*/
|
|
5484
5724
|
'sonar/publicly-writable-directories'?: Linter.RuleEntry<[]>;
|
|
@@ -5668,7 +5908,7 @@ interface RuleOptions {
|
|
|
5668
5908
|
*/
|
|
5669
5909
|
'sonar/web-sql-database'?: Linter.RuleEntry<[]>;
|
|
5670
5910
|
/**
|
|
5671
|
-
*
|
|
5911
|
+
* Web application technologies should not disclose version information
|
|
5672
5912
|
* @see https://sonarsource.github.io/rspec/#/rspec/S5689/javascript
|
|
5673
5913
|
*/
|
|
5674
5914
|
'sonar/x-powered-by'?: Linter.RuleEntry<[]>;
|
|
@@ -6416,6 +6656,11 @@ interface RuleOptions {
|
|
|
6416
6656
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-navigation-without-resolve/
|
|
6417
6657
|
*/
|
|
6418
6658
|
'svelte/no-navigation-without-resolve'?: Linter.RuleEntry<SvelteNoNavigationWithoutResolve>;
|
|
6659
|
+
/**
|
|
6660
|
+
* disallow `<style>` elements nested inside other elements or blocks
|
|
6661
|
+
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-nested-style-tag/
|
|
6662
|
+
*/
|
|
6663
|
+
'svelte/no-nested-style-tag'?: Linter.RuleEntry<[]>;
|
|
6419
6664
|
/**
|
|
6420
6665
|
* disallow use of not function in event handler
|
|
6421
6666
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-not-function-handler/
|
|
@@ -6531,6 +6776,11 @@ interface RuleOptions {
|
|
|
6531
6776
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-const/
|
|
6532
6777
|
*/
|
|
6533
6778
|
'svelte/prefer-const'?: Linter.RuleEntry<SveltePreferConst>;
|
|
6779
|
+
/**
|
|
6780
|
+
* disallow unnecessary `$derived.by()` when `$derived()` is sufficient
|
|
6781
|
+
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-derived-over-derived-by/
|
|
6782
|
+
*/
|
|
6783
|
+
'svelte/prefer-derived-over-derived-by'?: Linter.RuleEntry<[]>;
|
|
6534
6784
|
/**
|
|
6535
6785
|
* destructure values from object stores for better change tracking & fewer redraws
|
|
6536
6786
|
* @see https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-destructured-store-props/
|
|
@@ -6776,7 +7026,7 @@ interface RuleOptions {
|
|
|
6776
7026
|
*/
|
|
6777
7027
|
'test/no-mocks-import'?: Linter.RuleEntry<[]>;
|
|
6778
7028
|
/**
|
|
6779
|
-
* disallow
|
|
7029
|
+
* disallow focused/only tests
|
|
6780
7030
|
* @see https://github.com/levibuzolic/eslint-plugin-no-only-tests
|
|
6781
7031
|
*/
|
|
6782
7032
|
'test/no-only-tests'?: Linter.RuleEntry<TestNoOnlyTests>;
|
|
@@ -6901,7 +7151,7 @@ interface RuleOptions {
|
|
|
6901
7151
|
*/
|
|
6902
7152
|
'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
|
|
6903
7153
|
/**
|
|
6904
|
-
* enforce using `
|
|
7154
|
+
* enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof ...).toBe(...)`
|
|
6905
7155
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
|
|
6906
7156
|
*/
|
|
6907
7157
|
'test/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
|
|
@@ -8970,7 +9220,7 @@ interface RuleOptions {
|
|
|
8970
9220
|
*/
|
|
8971
9221
|
'vue/jsx-uses-vars'?: Linter.RuleEntry<[]>;
|
|
8972
9222
|
/**
|
|
8973
|
-
* Enforce consistent spacing between
|
|
9223
|
+
* Enforce consistent spacing between property names and type annotations in types and interfaces in `<template>`
|
|
8974
9224
|
* @see https://eslint.vuejs.org/rules/key-spacing.html
|
|
8975
9225
|
*/
|
|
8976
9226
|
'vue/key-spacing'?: Linter.RuleEntry<VueKeySpacing>;
|
|
@@ -9268,7 +9518,7 @@ interface RuleOptions {
|
|
|
9268
9518
|
* disallow object, array, and function literals in template
|
|
9269
9519
|
* @see https://eslint.vuejs.org/rules/no-literals-in-template.html
|
|
9270
9520
|
*/
|
|
9271
|
-
'vue/no-literals-in-template'?: Linter.RuleEntry<
|
|
9521
|
+
'vue/no-literals-in-template'?: Linter.RuleEntry<VueNoLiteralsInTemplate>;
|
|
9272
9522
|
/**
|
|
9273
9523
|
* disallow unnecessary `<template>`
|
|
9274
9524
|
* @see https://eslint.vuejs.org/rules/no-lone-template.html
|
|
@@ -9661,6 +9911,11 @@ interface RuleOptions {
|
|
|
9661
9911
|
* @see https://eslint.vuejs.org/rules/prefer-separate-static-class.html
|
|
9662
9912
|
*/
|
|
9663
9913
|
'vue/prefer-separate-static-class'?: Linter.RuleEntry<[]>;
|
|
9914
|
+
/**
|
|
9915
|
+
* enforce passing a single argument to custom event emissions
|
|
9916
|
+
* @see https://eslint.vuejs.org/rules/prefer-single-event-payload.html
|
|
9917
|
+
*/
|
|
9918
|
+
'vue/prefer-single-event-payload'?: Linter.RuleEntry<[]>;
|
|
9664
9919
|
/**
|
|
9665
9920
|
* Require template literals instead of string concatenation in `<template>`
|
|
9666
9921
|
* @see https://eslint.vuejs.org/rules/prefer-template.html
|
|
@@ -9676,13 +9931,18 @@ interface RuleOptions {
|
|
|
9676
9931
|
* @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
|
|
9677
9932
|
*/
|
|
9678
9933
|
'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>;
|
|
9934
|
+
/**
|
|
9935
|
+
* enforce using `v-model` instead of `:prop`/`@update:prop` pair
|
|
9936
|
+
* @see https://eslint.vuejs.org/rules/prefer-v-model.html
|
|
9937
|
+
*/
|
|
9938
|
+
'vue/prefer-v-model'?: Linter.RuleEntry<[]>;
|
|
9679
9939
|
/**
|
|
9680
9940
|
* enforce specific casing for the Prop name in Vue components
|
|
9681
9941
|
* @see https://eslint.vuejs.org/rules/prop-name-casing.html
|
|
9682
9942
|
*/
|
|
9683
9943
|
'vue/prop-name-casing'?: Linter.RuleEntry<VuePropNameCasing>;
|
|
9684
9944
|
/**
|
|
9685
|
-
* Require quotes around object literal property names in `<template>`
|
|
9945
|
+
* Require quotes around object literal, type literal, interfaces and enums property names in `<template>`
|
|
9686
9946
|
* @see https://eslint.vuejs.org/rules/quote-props.html
|
|
9687
9947
|
*/
|
|
9688
9948
|
'vue/quote-props'?: Linter.RuleEntry<VueQuoteProps>;
|
|
@@ -12586,7 +12846,6 @@ type NodeNoUnpublishedBin = [] | [{
|
|
|
12586
12846
|
exclude?: string[];
|
|
12587
12847
|
replace: [string, string];
|
|
12588
12848
|
})[]]);
|
|
12589
|
-
[k: string]: unknown | undefined;
|
|
12590
12849
|
}]; // ----- node/no-unpublished-import -----
|
|
12591
12850
|
type NodeNoUnpublishedImport = [] | [{
|
|
12592
12851
|
allowModules?: string[];
|
|
@@ -12640,7 +12899,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
|
|
|
12640
12899
|
type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
|
|
12641
12900
|
version?: string;
|
|
12642
12901
|
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")[];
|
|
12902
|
+
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
12903
|
}]; // ----- node/prefer-global/buffer -----
|
|
12645
12904
|
type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
|
|
12646
12905
|
type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
|
|
@@ -13099,6 +13358,7 @@ type PerfectionistSortClasses = {
|
|
|
13099
13358
|
matchesAstSelector?: string;
|
|
13100
13359
|
};
|
|
13101
13360
|
useExperimentalDependencyDetection?: boolean;
|
|
13361
|
+
newlinesBetweenOverloadSignatures?: ("ignore" | number);
|
|
13102
13362
|
ignoreCallbackDependenciesPatterns?: (({
|
|
13103
13363
|
pattern: string;
|
|
13104
13364
|
flags?: string;
|
|
@@ -14462,6 +14722,7 @@ type PerfectionistSortModules = [] | [{
|
|
|
14462
14722
|
})[];
|
|
14463
14723
|
newlinesBetween?: ("ignore" | number);
|
|
14464
14724
|
useExperimentalDependencyDetection?: boolean;
|
|
14725
|
+
newlinesBetweenOverloadSignatures?: ("ignore" | number);
|
|
14465
14726
|
partitionByComment?: (boolean | (({
|
|
14466
14727
|
pattern: string;
|
|
14467
14728
|
flags?: string;
|
|
@@ -15451,31 +15712,29 @@ type Quotes = [] | [("single" | "double" | "backtick")] | [("single" | "double"
|
|
|
15451
15712
|
avoidEscape?: boolean;
|
|
15452
15713
|
allowTemplateLiterals?: boolean;
|
|
15453
15714
|
})]; // ----- radix -----
|
|
15454
|
-
type Radix = [] | [("always" | "as-needed")]; // ----- react-
|
|
15455
|
-
type ReactDomNoUnknownProperty = [] | [{
|
|
15456
|
-
ignore?: string[];
|
|
15457
|
-
requireDataLowercase?: boolean;
|
|
15458
|
-
}]; // ----- react-refresh/only-export-components -----
|
|
15715
|
+
type Radix = [] | [("always" | "as-needed")]; // ----- react-refresh/only-export-components -----
|
|
15459
15716
|
type ReactRefreshOnlyExportComponents = [] | [{
|
|
15460
15717
|
extraHOCs?: string[];
|
|
15461
15718
|
allowExportNames?: string[];
|
|
15462
15719
|
allowConstantExport?: boolean;
|
|
15463
15720
|
checkJS?: boolean;
|
|
15721
|
+
}]; // ----- react/dom-no-unknown-property -----
|
|
15722
|
+
type ReactDomNoUnknownProperty = [] | [{
|
|
15723
|
+
ignore?: string[];
|
|
15724
|
+
requireDataLowercase?: boolean;
|
|
15464
15725
|
}]; // ----- react/exhaustive-deps -----
|
|
15465
15726
|
type ReactExhaustiveDeps = [] | [{
|
|
15466
15727
|
additionalHooks?: string;
|
|
15467
15728
|
enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
|
|
15468
15729
|
experimental_autoDependenciesHooks?: string[];
|
|
15469
15730
|
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 = [] | [{
|
|
15731
|
+
}]; // ----- react/jsx-no-useless-fragment -----
|
|
15732
|
+
type ReactJsxNoUselessFragment = [] | [{
|
|
15477
15733
|
allowEmptyFragment?: boolean;
|
|
15478
15734
|
allowExpressions?: boolean;
|
|
15735
|
+
}]; // ----- react/no-unstable-default-props -----
|
|
15736
|
+
type ReactNoUnstableDefaultProps = [] | [{
|
|
15737
|
+
safeDefaultProps?: string[];
|
|
15479
15738
|
}]; // ----- react/rules-of-hooks -----
|
|
15480
15739
|
type ReactRulesOfHooks = [] | [{
|
|
15481
15740
|
additionalHooks?: string;
|
|
@@ -15484,6 +15743,23 @@ type ReactUseState = [] | [{
|
|
|
15484
15743
|
enforceAssignment?: boolean;
|
|
15485
15744
|
enforceLazyInitialization?: boolean;
|
|
15486
15745
|
enforceSetterName?: boolean;
|
|
15746
|
+
}]; // ----- react/x-exhaustive-deps -----
|
|
15747
|
+
type ReactXExhaustiveDeps = [] | [{
|
|
15748
|
+
additionalHooks?: string;
|
|
15749
|
+
enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
|
|
15750
|
+
experimental_autoDependenciesHooks?: string[];
|
|
15751
|
+
requireExplicitEffectDeps?: boolean;
|
|
15752
|
+
}]; // ----- react/x-no-unstable-default-props -----
|
|
15753
|
+
type ReactXNoUnstableDefaultProps = [] | [{
|
|
15754
|
+
safeDefaultProps?: string[];
|
|
15755
|
+
}]; // ----- react/x-rules-of-hooks -----
|
|
15756
|
+
type ReactXRulesOfHooks = [] | [{
|
|
15757
|
+
additionalHooks?: string;
|
|
15758
|
+
}]; // ----- react/x-use-state -----
|
|
15759
|
+
type ReactXUseState = [] | [{
|
|
15760
|
+
enforceAssignment?: boolean;
|
|
15761
|
+
enforceLazyInitialization?: boolean;
|
|
15762
|
+
enforceSetterName?: boolean;
|
|
15487
15763
|
}]; // ----- regexp/hexadecimal-escape -----
|
|
15488
15764
|
type RegexpHexadecimalEscape = [] | [("always" | "never")]; // ----- regexp/letter-case -----
|
|
15489
15765
|
type RegexpLetterCase = [] | [{
|
|
@@ -15637,7 +15913,7 @@ type SonarArrowFunctionConvention = [] | [{
|
|
|
15637
15913
|
type SonarClassName = [] | [{
|
|
15638
15914
|
format?: string;
|
|
15639
15915
|
}]; // ----- sonar/cognitive-complexity -----
|
|
15640
|
-
type SonarCognitiveComplexity = [] | [(number |
|
|
15916
|
+
type SonarCognitiveComplexity = [] | [(number | "silence-issues")] | [(number | "silence-issues"), "silence-issues"]; // ----- sonar/comment-regex -----
|
|
15641
15917
|
type SonarCommentRegex = [] | [{
|
|
15642
15918
|
regularExpression?: string;
|
|
15643
15919
|
message?: string;
|
|
@@ -18536,6 +18812,7 @@ type VueArrayElementNewline = [] | [(_VueArrayElementNewlineBasicConfig | {
|
|
|
18536
18812
|
ArrayPattern?: _VueArrayElementNewlineBasicConfig;
|
|
18537
18813
|
})];
|
|
18538
18814
|
type _VueArrayElementNewlineBasicConfig = (("always" | "never" | "consistent") | {
|
|
18815
|
+
consistent?: boolean;
|
|
18539
18816
|
multiline?: boolean;
|
|
18540
18817
|
minItems?: (number | null);
|
|
18541
18818
|
}); // ----- vue/arrow-spacing -----
|
|
@@ -18595,9 +18872,14 @@ type VueCommaDangle = [] | [(_VueCommaDangleValue | {
|
|
|
18595
18872
|
imports?: _VueCommaDangleValueWithIgnore;
|
|
18596
18873
|
exports?: _VueCommaDangleValueWithIgnore;
|
|
18597
18874
|
functions?: _VueCommaDangleValueWithIgnore;
|
|
18875
|
+
importAttributes?: _VueCommaDangleValueWithIgnore;
|
|
18876
|
+
dynamicImports?: _VueCommaDangleValueWithIgnore;
|
|
18877
|
+
enums?: _VueCommaDangleValueWithIgnore;
|
|
18878
|
+
generics?: _VueCommaDangleValueWithIgnore;
|
|
18879
|
+
tuples?: _VueCommaDangleValueWithIgnore;
|
|
18598
18880
|
})];
|
|
18599
18881
|
type _VueCommaDangleValue = ("always-multiline" | "always" | "never" | "only-multiline");
|
|
18600
|
-
type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "
|
|
18882
|
+
type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "never" | "only-multiline" | "ignore"); // ----- vue/comma-spacing -----
|
|
18601
18883
|
type VueCommaSpacing = [] | [{
|
|
18602
18884
|
before?: boolean;
|
|
18603
18885
|
after?: boolean;
|
|
@@ -18647,6 +18929,10 @@ type VueFirstAttributeLinebreak = [] | [{
|
|
|
18647
18929
|
}]; // ----- vue/func-call-spacing -----
|
|
18648
18930
|
type VueFuncCallSpacing = ([] | ["never"] | [] | ["always"] | ["always", {
|
|
18649
18931
|
allowNewlines?: boolean;
|
|
18932
|
+
optionalChain?: {
|
|
18933
|
+
before?: boolean;
|
|
18934
|
+
after?: boolean;
|
|
18935
|
+
};
|
|
18650
18936
|
}]); // ----- vue/html-button-has-type -----
|
|
18651
18937
|
type VueHtmlButtonHasType = [] | [{
|
|
18652
18938
|
button?: boolean;
|
|
@@ -18718,6 +19004,7 @@ type VueKeySpacing = [] | [({
|
|
|
18718
19004
|
mode?: ("strict" | "minimum");
|
|
18719
19005
|
beforeColon?: boolean;
|
|
18720
19006
|
afterColon?: boolean;
|
|
19007
|
+
ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[];
|
|
18721
19008
|
} | {
|
|
18722
19009
|
singleLine?: {
|
|
18723
19010
|
mode?: ("strict" | "minimum");
|
|
@@ -18761,18 +19048,6 @@ type VueKeywordSpacing = [] | [{
|
|
|
18761
19048
|
before?: boolean;
|
|
18762
19049
|
after?: boolean;
|
|
18763
19050
|
};
|
|
18764
|
-
as?: {
|
|
18765
|
-
before?: boolean;
|
|
18766
|
-
after?: boolean;
|
|
18767
|
-
};
|
|
18768
|
-
async?: {
|
|
18769
|
-
before?: boolean;
|
|
18770
|
-
after?: boolean;
|
|
18771
|
-
};
|
|
18772
|
-
await?: {
|
|
18773
|
-
before?: boolean;
|
|
18774
|
-
after?: boolean;
|
|
18775
|
-
};
|
|
18776
19051
|
boolean?: {
|
|
18777
19052
|
before?: boolean;
|
|
18778
19053
|
after?: boolean;
|
|
@@ -18865,18 +19140,10 @@ type VueKeywordSpacing = [] | [{
|
|
|
18865
19140
|
before?: boolean;
|
|
18866
19141
|
after?: boolean;
|
|
18867
19142
|
};
|
|
18868
|
-
from?: {
|
|
18869
|
-
before?: boolean;
|
|
18870
|
-
after?: boolean;
|
|
18871
|
-
};
|
|
18872
19143
|
function?: {
|
|
18873
19144
|
before?: boolean;
|
|
18874
19145
|
after?: boolean;
|
|
18875
19146
|
};
|
|
18876
|
-
get?: {
|
|
18877
|
-
before?: boolean;
|
|
18878
|
-
after?: boolean;
|
|
18879
|
-
};
|
|
18880
19147
|
goto?: {
|
|
18881
19148
|
before?: boolean;
|
|
18882
19149
|
after?: boolean;
|
|
@@ -18909,10 +19176,6 @@ type VueKeywordSpacing = [] | [{
|
|
|
18909
19176
|
before?: boolean;
|
|
18910
19177
|
after?: boolean;
|
|
18911
19178
|
};
|
|
18912
|
-
let?: {
|
|
18913
|
-
before?: boolean;
|
|
18914
|
-
after?: boolean;
|
|
18915
|
-
};
|
|
18916
19179
|
long?: {
|
|
18917
19180
|
before?: boolean;
|
|
18918
19181
|
after?: boolean;
|
|
@@ -18929,10 +19192,6 @@ type VueKeywordSpacing = [] | [{
|
|
|
18929
19192
|
before?: boolean;
|
|
18930
19193
|
after?: boolean;
|
|
18931
19194
|
};
|
|
18932
|
-
of?: {
|
|
18933
|
-
before?: boolean;
|
|
18934
|
-
after?: boolean;
|
|
18935
|
-
};
|
|
18936
19195
|
package?: {
|
|
18937
19196
|
before?: boolean;
|
|
18938
19197
|
after?: boolean;
|
|
@@ -18953,10 +19212,6 @@ type VueKeywordSpacing = [] | [{
|
|
|
18953
19212
|
before?: boolean;
|
|
18954
19213
|
after?: boolean;
|
|
18955
19214
|
};
|
|
18956
|
-
set?: {
|
|
18957
|
-
before?: boolean;
|
|
18958
|
-
after?: boolean;
|
|
18959
|
-
};
|
|
18960
19215
|
short?: {
|
|
18961
19216
|
before?: boolean;
|
|
18962
19217
|
after?: boolean;
|
|
@@ -19025,10 +19280,66 @@ type VueKeywordSpacing = [] | [{
|
|
|
19025
19280
|
before?: boolean;
|
|
19026
19281
|
after?: boolean;
|
|
19027
19282
|
};
|
|
19283
|
+
arguments?: {
|
|
19284
|
+
before?: boolean;
|
|
19285
|
+
after?: boolean;
|
|
19286
|
+
};
|
|
19287
|
+
as?: {
|
|
19288
|
+
before?: boolean;
|
|
19289
|
+
after?: boolean;
|
|
19290
|
+
};
|
|
19291
|
+
async?: {
|
|
19292
|
+
before?: boolean;
|
|
19293
|
+
after?: boolean;
|
|
19294
|
+
};
|
|
19295
|
+
await?: {
|
|
19296
|
+
before?: boolean;
|
|
19297
|
+
after?: boolean;
|
|
19298
|
+
};
|
|
19299
|
+
eval?: {
|
|
19300
|
+
before?: boolean;
|
|
19301
|
+
after?: boolean;
|
|
19302
|
+
};
|
|
19303
|
+
from?: {
|
|
19304
|
+
before?: boolean;
|
|
19305
|
+
after?: boolean;
|
|
19306
|
+
};
|
|
19307
|
+
get?: {
|
|
19308
|
+
before?: boolean;
|
|
19309
|
+
after?: boolean;
|
|
19310
|
+
};
|
|
19311
|
+
let?: {
|
|
19312
|
+
before?: boolean;
|
|
19313
|
+
after?: boolean;
|
|
19314
|
+
};
|
|
19315
|
+
of?: {
|
|
19316
|
+
before?: boolean;
|
|
19317
|
+
after?: boolean;
|
|
19318
|
+
};
|
|
19319
|
+
set?: {
|
|
19320
|
+
before?: boolean;
|
|
19321
|
+
after?: boolean;
|
|
19322
|
+
};
|
|
19323
|
+
type?: {
|
|
19324
|
+
before?: boolean;
|
|
19325
|
+
after?: boolean;
|
|
19326
|
+
};
|
|
19327
|
+
using?: {
|
|
19328
|
+
before?: boolean;
|
|
19329
|
+
after?: boolean;
|
|
19330
|
+
};
|
|
19028
19331
|
yield?: {
|
|
19029
19332
|
before?: boolean;
|
|
19030
19333
|
after?: boolean;
|
|
19031
19334
|
};
|
|
19335
|
+
accessor?: {
|
|
19336
|
+
before?: boolean;
|
|
19337
|
+
after?: boolean;
|
|
19338
|
+
};
|
|
19339
|
+
satisfies?: {
|
|
19340
|
+
before?: boolean;
|
|
19341
|
+
after?: boolean;
|
|
19342
|
+
};
|
|
19032
19343
|
};
|
|
19033
19344
|
}]; // ----- vue/match-component-file-name -----
|
|
19034
19345
|
type VueMatchComponentFileName = [] | [{
|
|
@@ -19148,7 +19459,9 @@ type VueMultilineHtmlElementContentNewline = [] | [{
|
|
|
19148
19459
|
ignores?: string[];
|
|
19149
19460
|
allowEmptyLines?: boolean;
|
|
19150
19461
|
}]; // ----- vue/multiline-ternary -----
|
|
19151
|
-
type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")]
|
|
19462
|
+
type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")] | [("always" | "always-multiline" | "never"), {
|
|
19463
|
+
ignoreJSX?: boolean;
|
|
19464
|
+
}]; // ----- vue/mustache-interpolation-spacing -----
|
|
19152
19465
|
type VueMustacheInterpolationSpacing = [] | [("always" | "never")]; // ----- vue/new-line-between-multi-line-property -----
|
|
19153
19466
|
type VueNewLineBetweenMultiLineProperty = [] | [{
|
|
19154
19467
|
minLineOfMultilineProperty?: number;
|
|
@@ -19208,6 +19521,13 @@ type VueNoExtraParens = ([] | ["functions"] | [] | ["all"] | ["all", {
|
|
|
19208
19521
|
enforceForNewInMemberExpressions?: boolean;
|
|
19209
19522
|
enforceForFunctionPrototypeMethods?: boolean;
|
|
19210
19523
|
allowParensAfterCommentPattern?: string;
|
|
19524
|
+
nestedConditionalExpressions?: boolean;
|
|
19525
|
+
allowNodesInSpreadElement?: {
|
|
19526
|
+
ConditionalExpression?: boolean;
|
|
19527
|
+
LogicalExpression?: boolean;
|
|
19528
|
+
AwaitExpression?: boolean;
|
|
19529
|
+
};
|
|
19530
|
+
ignoredNodes?: string[];
|
|
19211
19531
|
}]); // ----- vue/no-implicit-coercion -----
|
|
19212
19532
|
type VueNoImplicitCoercion = [] | [{
|
|
19213
19533
|
boolean?: boolean;
|
|
@@ -19223,6 +19543,9 @@ type VueNoIrregularWhitespace = [] | [{
|
|
|
19223
19543
|
skipRegExps?: boolean;
|
|
19224
19544
|
skipHTMLAttributeValues?: boolean;
|
|
19225
19545
|
skipHTMLTextContents?: boolean;
|
|
19546
|
+
}]; // ----- vue/no-literals-in-template -----
|
|
19547
|
+
type VueNoLiteralsInTemplate = [] | [{
|
|
19548
|
+
ignores?: string[];
|
|
19226
19549
|
}]; // ----- vue/no-lone-template -----
|
|
19227
19550
|
type VueNoLoneTemplate = [] | [{
|
|
19228
19551
|
ignoreAccessible?: boolean;
|
|
@@ -19377,7 +19700,7 @@ type VueNoUnusedComponents = [] | [{
|
|
|
19377
19700
|
ignoreWhenBindingPresent?: boolean;
|
|
19378
19701
|
}]; // ----- vue/no-unused-properties -----
|
|
19379
19702
|
type VueNoUnusedProperties = [] | [{
|
|
19380
|
-
groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup")[];
|
|
19703
|
+
groups?: ("props" | "data" | "asyncData" | "computed" | "methods" | "setup" | "inject")[];
|
|
19381
19704
|
deepData?: boolean;
|
|
19382
19705
|
ignorePublicMembers?: boolean;
|
|
19383
19706
|
unreferencedOptions?: ("unknownMemberAsUnreferenced" | "returnAsUnreferenced")[];
|
|
@@ -19428,14 +19751,41 @@ type VueObjectCurlyNewline = [] | [((("always" | "never") | {
|
|
|
19428
19751
|
minProperties?: number;
|
|
19429
19752
|
consistent?: boolean;
|
|
19430
19753
|
});
|
|
19754
|
+
TSTypeLiteral?: (("always" | "never") | {
|
|
19755
|
+
multiline?: boolean;
|
|
19756
|
+
minProperties?: number;
|
|
19757
|
+
consistent?: boolean;
|
|
19758
|
+
});
|
|
19759
|
+
TSInterfaceBody?: (("always" | "never") | {
|
|
19760
|
+
multiline?: boolean;
|
|
19761
|
+
minProperties?: number;
|
|
19762
|
+
consistent?: boolean;
|
|
19763
|
+
});
|
|
19764
|
+
TSEnumBody?: (("always" | "never") | {
|
|
19765
|
+
multiline?: boolean;
|
|
19766
|
+
minProperties?: number;
|
|
19767
|
+
consistent?: boolean;
|
|
19768
|
+
});
|
|
19431
19769
|
})]; // ----- vue/object-curly-spacing -----
|
|
19432
19770
|
type VueObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
|
|
19433
19771
|
arraysInObjects?: boolean;
|
|
19434
19772
|
objectsInObjects?: boolean;
|
|
19773
|
+
overrides?: {
|
|
19774
|
+
ObjectPattern?: ("always" | "never");
|
|
19775
|
+
ObjectExpression?: ("always" | "never");
|
|
19776
|
+
ImportDeclaration?: ("always" | "never");
|
|
19777
|
+
ImportAttributes?: ("always" | "never");
|
|
19778
|
+
ExportNamedDeclaration?: ("always" | "never");
|
|
19779
|
+
ExportAllDeclaration?: ("always" | "never");
|
|
19780
|
+
TSMappedType?: ("always" | "never");
|
|
19781
|
+
TSTypeLiteral?: ("always" | "never");
|
|
19782
|
+
TSInterfaceBody?: ("always" | "never");
|
|
19783
|
+
TSEnumBody?: ("always" | "never");
|
|
19784
|
+
};
|
|
19785
|
+
emptyObjects?: ("ignore" | "always" | "never");
|
|
19435
19786
|
}]; // ----- vue/object-property-newline -----
|
|
19436
19787
|
type VueObjectPropertyNewline = [] | [{
|
|
19437
19788
|
allowAllPropertiesOnSameLine?: boolean;
|
|
19438
|
-
allowMultiplePropertiesPerLine?: boolean;
|
|
19439
19789
|
}]; // ----- vue/object-shorthand -----
|
|
19440
19790
|
type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never" | "consistent" | "consistent-as-needed")] | [] | [("always" | "methods" | "properties")] | [("always" | "methods" | "properties"), {
|
|
19441
19791
|
avoidQuotes?: boolean;
|
|
@@ -19445,7 +19795,7 @@ type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never"
|
|
|
19445
19795
|
avoidQuotes?: boolean;
|
|
19446
19796
|
avoidExplicitReturnArrows?: boolean;
|
|
19447
19797
|
}]); // ----- vue/operator-linebreak -----
|
|
19448
|
-
type VueOperatorLinebreak = [] | [("after" | "before" | "none" | null)] | [("after" | "before" | "none" | null), {
|
|
19798
|
+
type VueOperatorLinebreak = [] | [(("after" | "before" | "none") | null)] | [(("after" | "before" | "none") | null), {
|
|
19449
19799
|
overrides?: {
|
|
19450
19800
|
[k: string]: ("after" | "before" | "none" | "ignore") | undefined;
|
|
19451
19801
|
};
|
|
@@ -19533,6 +19883,7 @@ type VueSpaceInParens = [] | [("always" | "never")] | [("always" | "never"), {
|
|
|
19533
19883
|
}]; // ----- vue/space-infix-ops -----
|
|
19534
19884
|
type VueSpaceInfixOps = [] | [{
|
|
19535
19885
|
int32Hint?: boolean;
|
|
19886
|
+
ignoreTypes?: boolean;
|
|
19536
19887
|
}]; // ----- vue/space-unary-ops -----
|
|
19537
19888
|
type VueSpaceUnaryOps = [] | [{
|
|
19538
19889
|
words?: boolean;
|
|
@@ -19774,7 +20125,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
|
|
|
19774
20125
|
exceptRange?: boolean;
|
|
19775
20126
|
onlyEquality?: boolean;
|
|
19776
20127
|
}]; // 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/
|
|
20128
|
+
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
20129
|
//#endregion
|
|
19779
20130
|
//#region src/vendor/prettier-types.d.ts
|
|
19780
20131
|
/**
|
|
@@ -20109,7 +20460,7 @@ interface OptionsHasTypeScript {
|
|
|
20109
20460
|
interface OptionsStylistic {
|
|
20110
20461
|
stylistic?: boolean | StylisticConfig;
|
|
20111
20462
|
}
|
|
20112
|
-
interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi' | 'experimental'> {}
|
|
20463
|
+
interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi' | 'experimental' | 'braceStyle'> {}
|
|
20113
20464
|
interface OptionsOverrides {
|
|
20114
20465
|
overrides?: TypedFlatConfigItem['rules'];
|
|
20115
20466
|
}
|
|
@@ -20255,6 +20606,12 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
20255
20606
|
* @default true
|
|
20256
20607
|
*/
|
|
20257
20608
|
unicorn?: boolean | OptionsUnicorn;
|
|
20609
|
+
/**
|
|
20610
|
+
* Options for eslint-plugin-perfectionist.
|
|
20611
|
+
*
|
|
20612
|
+
* @default true
|
|
20613
|
+
*/
|
|
20614
|
+
perfectionist?: boolean | OptionsOverrides;
|
|
20258
20615
|
/**
|
|
20259
20616
|
* Options for eslint-plugin-import-lite.
|
|
20260
20617
|
*
|
|
@@ -20400,10 +20757,6 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
|
|
|
20400
20757
|
//#region src/base.d.ts
|
|
20401
20758
|
declare const defaultPluginRenaming: {
|
|
20402
20759
|
'@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
20760
|
'@next/next': string;
|
|
20408
20761
|
'@stylistic': string;
|
|
20409
20762
|
'@typescript-eslint': string;
|
|
@@ -20477,7 +20830,7 @@ declare function node(): Promise<Array<TypedFlatConfigItem>>;
|
|
|
20477
20830
|
*
|
|
20478
20831
|
* @see https://github.com/azat-io/eslint-plugin-perfectionist
|
|
20479
20832
|
*/
|
|
20480
|
-
declare function perfectionist(): Promise<Array<TypedFlatConfigItem>>;
|
|
20833
|
+
declare function perfectionist(options: OptionsOverrides): Promise<Array<TypedFlatConfigItem>>;
|
|
20481
20834
|
//#endregion
|
|
20482
20835
|
//#region src/configs/pnpm.d.ts
|
|
20483
20836
|
declare function pnpm(options: OptionsPnpm): Promise<Array<TypedFlatConfigItem>>;
|