@bfra.me/eslint-config 0.11.0 → 0.12.1

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/lib/index.d.ts CHANGED
@@ -805,7 +805,7 @@ interface Rules {
805
805
  */
806
806
  'default-case'?: Linter.RuleEntry<DefaultCase>
807
807
  /**
808
- * Enforce default clauses in switch statements to be last
808
+ * Enforce `default` clauses in switch statements to be last
809
809
  * @see https://eslint.org/docs/latest/rules/default-case-last
810
810
  */
811
811
  'default-case-last'?: Linter.RuleEntry<[]>
@@ -882,7 +882,7 @@ interface Rules {
882
882
  */
883
883
  'eslint-comments/require-description'?: Linter.RuleEntry<EslintCommentsRequireDescription>
884
884
  /**
885
- * Enforce "for" loop update clause moving the counter in the right direction
885
+ * Enforce `for` loop update clause moving the counter in the right direction
886
886
  * @see https://eslint.org/docs/latest/rules/for-direction
887
887
  */
888
888
  'for-direction'?: Linter.RuleEntry<[]>
@@ -2363,7 +2363,7 @@ interface Rules {
2363
2363
  */
2364
2364
  'no-octal-escape'?: Linter.RuleEntry<[]>
2365
2365
  /**
2366
- * Disallow reassigning `function` parameters
2366
+ * Disallow reassigning function parameters
2367
2367
  * @see https://eslint.org/docs/latest/rules/no-param-reassign
2368
2368
  */
2369
2369
  'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>
@@ -2458,7 +2458,7 @@ interface Rules {
2458
2458
  */
2459
2459
  'no-return-await'?: Linter.RuleEntry<[]>
2460
2460
  /**
2461
- * Disallow `javascript:` urls
2461
+ * Disallow `javascript:` URLs
2462
2462
  * @see https://eslint.org/docs/latest/rules/no-script-url
2463
2463
  */
2464
2464
  'no-script-url'?: Linter.RuleEntry<[]>
@@ -2702,6 +2702,208 @@ interface Rules {
2702
2702
  * @see https://eslint.org/docs/latest/rules/no-with
2703
2703
  */
2704
2704
  'no-with'?: Linter.RuleEntry<[]>
2705
+ /**
2706
+ * require `return` statements after callbacks
2707
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/callback-return.md
2708
+ */
2709
+ 'node/callback-return'?: Linter.RuleEntry<NodeCallbackReturn>
2710
+ /**
2711
+ * enforce either `module.exports` or `exports`
2712
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/exports-style.md
2713
+ */
2714
+ 'node/exports-style'?: Linter.RuleEntry<NodeExportsStyle>
2715
+ /**
2716
+ * enforce the style of file extensions in `import` declarations
2717
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/file-extension-in-import.md
2718
+ */
2719
+ 'node/file-extension-in-import'?: Linter.RuleEntry<NodeFileExtensionInImport>
2720
+ /**
2721
+ * require `require()` calls to be placed at top-level module scope
2722
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/global-require.md
2723
+ */
2724
+ 'node/global-require'?: Linter.RuleEntry<[]>
2725
+ /**
2726
+ * require error handling in callbacks
2727
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/handle-callback-err.md
2728
+ */
2729
+ 'node/handle-callback-err'?: Linter.RuleEntry<NodeHandleCallbackErr>
2730
+ /**
2731
+ * require correct usage of hashbang
2732
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/hashbang.md
2733
+ */
2734
+ 'node/hashbang'?: Linter.RuleEntry<NodeHashbang>
2735
+ /**
2736
+ * enforce Node.js-style error-first callback pattern is followed
2737
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-callback-literal.md
2738
+ */
2739
+ 'node/no-callback-literal'?: Linter.RuleEntry<[]>
2740
+ /**
2741
+ * disallow deprecated APIs
2742
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-deprecated-api.md
2743
+ */
2744
+ 'node/no-deprecated-api'?: Linter.RuleEntry<NodeNoDeprecatedApi>
2745
+ /**
2746
+ * disallow the assignment to `exports`
2747
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-exports-assign.md
2748
+ */
2749
+ 'node/no-exports-assign'?: Linter.RuleEntry<[]>
2750
+ /**
2751
+ * disallow `import` declarations which import extraneous modules
2752
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-extraneous-import.md
2753
+ */
2754
+ 'node/no-extraneous-import'?: Linter.RuleEntry<NodeNoExtraneousImport>
2755
+ /**
2756
+ * disallow `require()` expressions which import extraneous modules
2757
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-extraneous-require.md
2758
+ */
2759
+ 'node/no-extraneous-require'?: Linter.RuleEntry<NodeNoExtraneousRequire>
2760
+ /**
2761
+ * disallow third-party modules which are hiding core modules
2762
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-hide-core-modules.md
2763
+ * @deprecated
2764
+ */
2765
+ 'node/no-hide-core-modules'?: Linter.RuleEntry<NodeNoHideCoreModules>
2766
+ /**
2767
+ * disallow `import` declarations which import non-existence modules
2768
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-import.md
2769
+ */
2770
+ 'node/no-missing-import'?: Linter.RuleEntry<NodeNoMissingImport>
2771
+ /**
2772
+ * disallow `require()` expressions which import non-existence modules
2773
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-missing-require.md
2774
+ */
2775
+ 'node/no-missing-require'?: Linter.RuleEntry<NodeNoMissingRequire>
2776
+ /**
2777
+ * disallow `require` calls to be mixed with regular variable declarations
2778
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-mixed-requires.md
2779
+ */
2780
+ 'node/no-mixed-requires'?: Linter.RuleEntry<NodeNoMixedRequires>
2781
+ /**
2782
+ * disallow `new` operators with calls to `require`
2783
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-new-require.md
2784
+ */
2785
+ 'node/no-new-require'?: Linter.RuleEntry<[]>
2786
+ /**
2787
+ * disallow string concatenation with `__dirname` and `__filename`
2788
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-path-concat.md
2789
+ */
2790
+ 'node/no-path-concat'?: Linter.RuleEntry<[]>
2791
+ /**
2792
+ * disallow the use of `process.env`
2793
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-env.md
2794
+ */
2795
+ 'node/no-process-env'?: Linter.RuleEntry<NodeNoProcessEnv>
2796
+ /**
2797
+ * disallow the use of `process.exit()`
2798
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-exit.md
2799
+ */
2800
+ 'node/no-process-exit'?: Linter.RuleEntry<[]>
2801
+ /**
2802
+ * disallow specified modules when loaded by `import` declarations
2803
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-restricted-import.md
2804
+ */
2805
+ 'node/no-restricted-import'?: Linter.RuleEntry<NodeNoRestrictedImport>
2806
+ /**
2807
+ * disallow specified modules when loaded by `require`
2808
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-restricted-require.md
2809
+ */
2810
+ 'node/no-restricted-require'?: Linter.RuleEntry<NodeNoRestrictedRequire>
2811
+ /**
2812
+ * disallow synchronous methods
2813
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-sync.md
2814
+ */
2815
+ 'node/no-sync'?: Linter.RuleEntry<NodeNoSync>
2816
+ /**
2817
+ * disallow `bin` files that npm ignores
2818
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unpublished-bin.md
2819
+ */
2820
+ 'node/no-unpublished-bin'?: Linter.RuleEntry<NodeNoUnpublishedBin>
2821
+ /**
2822
+ * disallow `import` declarations which import private modules
2823
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unpublished-import.md
2824
+ */
2825
+ 'node/no-unpublished-import'?: Linter.RuleEntry<NodeNoUnpublishedImport>
2826
+ /**
2827
+ * disallow `require()` expressions which import private modules
2828
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unpublished-require.md
2829
+ */
2830
+ 'node/no-unpublished-require'?: Linter.RuleEntry<NodeNoUnpublishedRequire>
2831
+ /**
2832
+ * disallow unsupported ECMAScript built-ins on the specified version
2833
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unsupported-features/es-builtins.md
2834
+ */
2835
+ 'node/no-unsupported-features/es-builtins'?: Linter.RuleEntry<NodeNoUnsupportedFeaturesEsBuiltins>
2836
+ /**
2837
+ * disallow unsupported ECMAScript syntax on the specified version
2838
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unsupported-features/es-syntax.md
2839
+ */
2840
+ 'node/no-unsupported-features/es-syntax'?: Linter.RuleEntry<NodeNoUnsupportedFeaturesEsSyntax>
2841
+ /**
2842
+ * disallow unsupported Node.js built-in APIs on the specified version
2843
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unsupported-features/node-builtins.md
2844
+ */
2845
+ 'node/no-unsupported-features/node-builtins'?: Linter.RuleEntry<NodeNoUnsupportedFeaturesNodeBuiltins>
2846
+ /**
2847
+ * enforce either `Buffer` or `require("buffer").Buffer`
2848
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/buffer.md
2849
+ */
2850
+ 'node/prefer-global/buffer'?: Linter.RuleEntry<NodePreferGlobalBuffer>
2851
+ /**
2852
+ * enforce either `console` or `require("console")`
2853
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/console.md
2854
+ */
2855
+ 'node/prefer-global/console'?: Linter.RuleEntry<NodePreferGlobalConsole>
2856
+ /**
2857
+ * enforce either `process` or `require("process")`
2858
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/process.md
2859
+ */
2860
+ 'node/prefer-global/process'?: Linter.RuleEntry<NodePreferGlobalProcess>
2861
+ /**
2862
+ * enforce either `TextDecoder` or `require("util").TextDecoder`
2863
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/text-decoder.md
2864
+ */
2865
+ 'node/prefer-global/text-decoder'?: Linter.RuleEntry<NodePreferGlobalTextDecoder>
2866
+ /**
2867
+ * enforce either `TextEncoder` or `require("util").TextEncoder`
2868
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/text-encoder.md
2869
+ */
2870
+ 'node/prefer-global/text-encoder'?: Linter.RuleEntry<NodePreferGlobalTextEncoder>
2871
+ /**
2872
+ * enforce either `URL` or `require("url").URL`
2873
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/url.md
2874
+ */
2875
+ 'node/prefer-global/url'?: Linter.RuleEntry<NodePreferGlobalUrl>
2876
+ /**
2877
+ * enforce either `URLSearchParams` or `require("url").URLSearchParams`
2878
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/url-search-params.md
2879
+ */
2880
+ 'node/prefer-global/url-search-params'?: Linter.RuleEntry<NodePreferGlobalUrlSearchParams>
2881
+ /**
2882
+ * enforce using the `node:` protocol when importing Node.js builtin modules.
2883
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-node-protocol.md
2884
+ */
2885
+ 'node/prefer-node-protocol'?: Linter.RuleEntry<NodePreferNodeProtocol>
2886
+ /**
2887
+ * enforce `require("dns").promises`
2888
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-promises/dns.md
2889
+ */
2890
+ 'node/prefer-promises/dns'?: Linter.RuleEntry<[]>
2891
+ /**
2892
+ * enforce `require("fs").promises`
2893
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-promises/fs.md
2894
+ */
2895
+ 'node/prefer-promises/fs'?: Linter.RuleEntry<[]>
2896
+ /**
2897
+ * require that `process.exit()` expressions use the same code path as `throw`
2898
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/process-exit-as-throw.md
2899
+ */
2900
+ 'node/process-exit-as-throw'?: Linter.RuleEntry<[]>
2901
+ /**
2902
+ * require correct usage of hashbang
2903
+ * @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/hashbang.md
2904
+ * @deprecated
2905
+ */
2906
+ 'node/shebang'?: Linter.RuleEntry<NodeShebang>
2705
2907
  /**
2706
2908
  * Enforce the location of single-line statements
2707
2909
  * @see https://eslint.org/docs/latest/rules/nonblock-statement-body-position
@@ -2901,7 +3103,7 @@ interface Rules {
2901
3103
  */
2902
3104
  'prefer-object-has-own'?: Linter.RuleEntry<[]>
2903
3105
  /**
2904
- * Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
3106
+ * Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
2905
3107
  * @see https://eslint.org/docs/latest/rules/prefer-object-spread
2906
3108
  */
2907
3109
  'prefer-object-spread'?: Linter.RuleEntry<[]>
@@ -3378,7 +3580,7 @@ interface Rules {
3378
3580
  */
3379
3581
  'require-await'?: Linter.RuleEntry<[]>
3380
3582
  /**
3381
- * Enforce the use of `u` or `v` flag on RegExp
3583
+ * Enforce the use of `u` or `v` flag on regular expressions
3382
3584
  * @see https://eslint.org/docs/latest/rules/require-unicode-regexp
3383
3585
  */
3384
3586
  'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>
@@ -8083,6 +8285,281 @@ type NoWarningComments = []|[{
8083
8285
 
8084
8286
  decoration?: [string, ...(string)[]]
8085
8287
  }]
8288
+ // ----- node/callback-return -----
8289
+ type NodeCallbackReturn = []|[string[]]
8290
+ // ----- node/exports-style -----
8291
+ type NodeExportsStyle = []|[("module.exports" | "exports")]|[("module.exports" | "exports"), {
8292
+ allowBatchAssign?: boolean
8293
+ }]
8294
+ // ----- node/file-extension-in-import -----
8295
+ type NodeFileExtensionInImport = []|[("always" | "never")]|[("always" | "never"), {
8296
+ [k: string]: ("always" | "never") | undefined
8297
+ }]
8298
+ // ----- node/handle-callback-err -----
8299
+ type NodeHandleCallbackErr = []|[string]
8300
+ // ----- node/hashbang -----
8301
+ type NodeHashbang = []|[{
8302
+ convertPath?: ({
8303
+
8304
+ [k: string]: [string, string]
8305
+ } | [{
8306
+
8307
+ include: [string, ...(string)[]]
8308
+ exclude?: string[]
8309
+
8310
+ replace: [string, string]
8311
+ }, ...({
8312
+
8313
+ include: [string, ...(string)[]]
8314
+ exclude?: string[]
8315
+
8316
+ replace: [string, string]
8317
+ })[]])
8318
+ ignoreUnpublished?: boolean
8319
+ additionalExecutables?: string[]
8320
+ executableMap?: {
8321
+ [k: string]: string
8322
+ }
8323
+ }]
8324
+ // ----- node/no-deprecated-api -----
8325
+ type NodeNoDeprecatedApi = []|[{
8326
+ version?: string
8327
+ ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "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.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[]
8328
+ ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[]
8329
+ ignoreIndirectDependencies?: boolean
8330
+ }]
8331
+ // ----- node/no-extraneous-import -----
8332
+ type NodeNoExtraneousImport = []|[{
8333
+ allowModules?: string[]
8334
+ convertPath?: ({
8335
+
8336
+ [k: string]: [string, string]
8337
+ } | [{
8338
+
8339
+ include: [string, ...(string)[]]
8340
+ exclude?: string[]
8341
+
8342
+ replace: [string, string]
8343
+ }, ...({
8344
+
8345
+ include: [string, ...(string)[]]
8346
+ exclude?: string[]
8347
+
8348
+ replace: [string, string]
8349
+ })[]])
8350
+ resolvePaths?: string[]
8351
+ resolverConfig?: {
8352
+ [k: string]: unknown | undefined
8353
+ }
8354
+ }]
8355
+ // ----- node/no-extraneous-require -----
8356
+ type NodeNoExtraneousRequire = []|[{
8357
+ allowModules?: string[]
8358
+ convertPath?: ({
8359
+
8360
+ [k: string]: [string, string]
8361
+ } | [{
8362
+
8363
+ include: [string, ...(string)[]]
8364
+ exclude?: string[]
8365
+
8366
+ replace: [string, string]
8367
+ }, ...({
8368
+
8369
+ include: [string, ...(string)[]]
8370
+ exclude?: string[]
8371
+
8372
+ replace: [string, string]
8373
+ })[]])
8374
+ resolvePaths?: string[]
8375
+ resolverConfig?: {
8376
+ [k: string]: unknown | undefined
8377
+ }
8378
+ tryExtensions?: string[]
8379
+ }]
8380
+ // ----- node/no-hide-core-modules -----
8381
+ type NodeNoHideCoreModules = []|[{
8382
+ allow?: ("assert" | "buffer" | "child_process" | "cluster" | "console" | "constants" | "crypto" | "dgram" | "dns" | "events" | "fs" | "http" | "https" | "module" | "net" | "os" | "path" | "querystring" | "readline" | "repl" | "stream" | "string_decoder" | "timers" | "tls" | "tty" | "url" | "util" | "vm" | "zlib")[]
8383
+ ignoreDirectDependencies?: boolean
8384
+ ignoreIndirectDependencies?: boolean
8385
+ }]
8386
+ // ----- node/no-missing-import -----
8387
+ type NodeNoMissingImport = []|[{
8388
+ allowModules?: string[]
8389
+ resolvePaths?: string[]
8390
+ resolverConfig?: {
8391
+ [k: string]: unknown | undefined
8392
+ }
8393
+ tryExtensions?: string[]
8394
+ ignoreTypeImport?: boolean
8395
+ tsconfigPath?: string
8396
+ typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
8397
+ }]
8398
+ // ----- node/no-missing-require -----
8399
+ type NodeNoMissingRequire = []|[{
8400
+ allowModules?: string[]
8401
+ tryExtensions?: string[]
8402
+ resolvePaths?: string[]
8403
+ resolverConfig?: {
8404
+ [k: string]: unknown | undefined
8405
+ }
8406
+ typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
8407
+ tsconfigPath?: string
8408
+ }]
8409
+ // ----- node/no-mixed-requires -----
8410
+ type NodeNoMixedRequires = []|[(boolean | {
8411
+ grouping?: boolean
8412
+ allowCall?: boolean
8413
+ })]
8414
+ // ----- node/no-process-env -----
8415
+ type NodeNoProcessEnv = []|[{
8416
+ allowedVariables?: string[]
8417
+ }]
8418
+ // ----- node/no-restricted-import -----
8419
+ type NodeNoRestrictedImport = []|[(string | {
8420
+ name: (string | string[])
8421
+ message?: string
8422
+ })[]]
8423
+ // ----- node/no-restricted-require -----
8424
+ type NodeNoRestrictedRequire = []|[(string | {
8425
+ name: (string | string[])
8426
+ message?: string
8427
+ })[]]
8428
+ // ----- node/no-sync -----
8429
+ type NodeNoSync = []|[{
8430
+ allowAtRootLevel?: boolean
8431
+ ignores?: string[]
8432
+ }]
8433
+ // ----- node/no-unpublished-bin -----
8434
+ type NodeNoUnpublishedBin = []|[{
8435
+ convertPath?: ({
8436
+
8437
+ [k: string]: [string, string]
8438
+ } | [{
8439
+
8440
+ include: [string, ...(string)[]]
8441
+ exclude?: string[]
8442
+
8443
+ replace: [string, string]
8444
+ }, ...({
8445
+
8446
+ include: [string, ...(string)[]]
8447
+ exclude?: string[]
8448
+
8449
+ replace: [string, string]
8450
+ })[]])
8451
+ [k: string]: unknown | undefined
8452
+ }]
8453
+ // ----- node/no-unpublished-import -----
8454
+ type NodeNoUnpublishedImport = []|[{
8455
+ allowModules?: string[]
8456
+ convertPath?: ({
8457
+
8458
+ [k: string]: [string, string]
8459
+ } | [{
8460
+
8461
+ include: [string, ...(string)[]]
8462
+ exclude?: string[]
8463
+
8464
+ replace: [string, string]
8465
+ }, ...({
8466
+
8467
+ include: [string, ...(string)[]]
8468
+ exclude?: string[]
8469
+
8470
+ replace: [string, string]
8471
+ })[]])
8472
+ resolvePaths?: string[]
8473
+ resolverConfig?: {
8474
+ [k: string]: unknown | undefined
8475
+ }
8476
+ ignoreTypeImport?: boolean
8477
+ ignorePrivate?: boolean
8478
+ }]
8479
+ // ----- node/no-unpublished-require -----
8480
+ type NodeNoUnpublishedRequire = []|[{
8481
+ allowModules?: string[]
8482
+ convertPath?: ({
8483
+
8484
+ [k: string]: [string, string]
8485
+ } | [{
8486
+
8487
+ include: [string, ...(string)[]]
8488
+ exclude?: string[]
8489
+
8490
+ replace: [string, string]
8491
+ }, ...({
8492
+
8493
+ include: [string, ...(string)[]]
8494
+ exclude?: string[]
8495
+
8496
+ replace: [string, string]
8497
+ })[]])
8498
+ resolvePaths?: string[]
8499
+ resolverConfig?: {
8500
+ [k: string]: unknown | undefined
8501
+ }
8502
+ tryExtensions?: string[]
8503
+ ignorePrivate?: boolean
8504
+ }]
8505
+ // ----- node/no-unsupported-features/es-builtins -----
8506
+ type NodeNoUnsupportedFeaturesEsBuiltins = []|[{
8507
+ version?: string
8508
+ ignores?: ("AggregateError" | "Array" | "Array.from" | "Array.isArray" | "Array.length" | "Array.of" | "Array.toLocaleString" | "ArrayBuffer" | "ArrayBuffer.isView" | "Atomics" | "Atomics.add" | "Atomics.and" | "Atomics.compareExchange" | "Atomics.exchange" | "Atomics.isLockFree" | "Atomics.load" | "Atomics.notify" | "Atomics.or" | "Atomics.store" | "Atomics.sub" | "Atomics.wait" | "Atomics.waitAsync" | "Atomics.xor" | "BigInt" | "BigInt.asIntN" | "BigInt.asUintN" | "BigInt64Array" | "BigInt64Array.BYTES_PER_ELEMENT" | "BigInt64Array.from" | "BigInt64Array.name" | "BigInt64Array.of" | "BigUint64Array" | "BigUint64Array.BYTES_PER_ELEMENT" | "BigUint64Array.from" | "BigUint64Array.name" | "BigUint64Array.of" | "Boolean" | "DataView" | "Date" | "Date.UTC" | "Date.now" | "Date.parse" | "Date.toLocaleDateString" | "Date.toLocaleString" | "Date.toLocaleTimeString" | "Error" | "Error.cause" | "EvalError" | "FinalizationRegistry" | "Float32Array" | "Float32Array.BYTES_PER_ELEMENT" | "Float32Array.from" | "Float32Array.name" | "Float32Array.of" | "Float64Array" | "Float64Array.BYTES_PER_ELEMENT" | "Float64Array.from" | "Float64Array.name" | "Float64Array.of" | "Function" | "Function.length" | "Function.name" | "Infinity" | "Int16Array" | "Int16Array.BYTES_PER_ELEMENT" | "Int16Array.from" | "Int16Array.name" | "Int16Array.of" | "Int32Array" | "Int32Array.BYTES_PER_ELEMENT" | "Int32Array.from" | "Int32Array.name" | "Int32Array.of" | "Int8Array" | "Int8Array.BYTES_PER_ELEMENT" | "Int8Array.from" | "Int8Array.name" | "Int8Array.of" | "Intl" | "Intl.Collator" | "Intl.DateTimeFormat" | "Intl.DisplayNames" | "Intl.ListFormat" | "Intl.Locale" | "Intl.NumberFormat" | "Intl.PluralRules" | "Intl.RelativeTimeFormat" | "Intl.Segmenter" | "Intl.Segments" | "Intl.getCanonicalLocales" | "Intl.supportedValuesOf" | "JSON" | "JSON.parse" | "JSON.stringify" | "Map" | "Map.groupBy" | "Math" | "Math.E" | "Math.LN10" | "Math.LN2" | "Math.LOG10E" | "Math.LOG2E" | "Math.PI" | "Math.SQRT1_2" | "Math.SQRT2" | "Math.abs" | "Math.acos" | "Math.acosh" | "Math.asin" | "Math.asinh" | "Math.atan" | "Math.atan2" | "Math.atanh" | "Math.cbrt" | "Math.ceil" | "Math.clz32" | "Math.cos" | "Math.cosh" | "Math.exp" | "Math.expm1" | "Math.floor" | "Math.fround" | "Math.hypot" | "Math.imul" | "Math.log" | "Math.log10" | "Math.log1p" | "Math.log2" | "Math.max" | "Math.min" | "Math.pow" | "Math.random" | "Math.round" | "Math.sign" | "Math.sin" | "Math.sinh" | "Math.sqrt" | "Math.tan" | "Math.tanh" | "Math.trunc" | "NaN" | "Number.EPSILON" | "Number.MAX_SAFE_INTEGER" | "Number.MAX_VALUE" | "Number.MIN_SAFE_INTEGER" | "Number.MIN_VALUE" | "Number.NEGATIVE_INFINITY" | "Number.NaN" | "Number.POSITIVE_INFINITY" | "Number.isFinite" | "Number.isInteger" | "Number.isNaN" | "Number.isSafeInteger" | "Number.parseFloat" | "Number.parseInt" | "Number.toLocaleString" | "Object.assign" | "Object.create" | "Object.defineGetter" | "Object.defineProperties" | "Object.defineProperty" | "Object.defineSetter" | "Object.entries" | "Object.freeze" | "Object.fromEntries" | "Object.getOwnPropertyDescriptor" | "Object.getOwnPropertyDescriptors" | "Object.getOwnPropertyNames" | "Object.getOwnPropertySymbols" | "Object.getPrototypeOf" | "Object.groupBy" | "Object.hasOwn" | "Object.is" | "Object.isExtensible" | "Object.isFrozen" | "Object.isSealed" | "Object.keys" | "Object.lookupGetter" | "Object.lookupSetter" | "Object.preventExtensions" | "Object.proto" | "Object.seal" | "Object.setPrototypeOf" | "Object.values" | "Promise" | "Promise.all" | "Promise.allSettled" | "Promise.any" | "Promise.race" | "Promise.reject" | "Promise.resolve" | "Proxy" | "Proxy.revocable" | "RangeError" | "ReferenceError" | "Reflect" | "Reflect.apply" | "Reflect.construct" | "Reflect.defineProperty" | "Reflect.deleteProperty" | "Reflect.get" | "Reflect.getOwnPropertyDescriptor" | "Reflect.getPrototypeOf" | "Reflect.has" | "Reflect.isExtensible" | "Reflect.ownKeys" | "Reflect.preventExtensions" | "Reflect.set" | "Reflect.setPrototypeOf" | "RegExp" | "RegExp.dotAll" | "RegExp.hasIndices" | "RegExp.input" | "RegExp.lastIndex" | "RegExp.lastMatch" | "RegExp.lastParen" | "RegExp.leftContext" | "RegExp.n" | "RegExp.rightContext" | "Set" | "SharedArrayBuffer" | "String" | "String.fromCharCode" | "String.fromCodePoint" | "String.length" | "String.localeCompare" | "String.raw" | "String.toLocaleLowerCase" | "String.toLocaleUpperCase" | "Symbol" | "Symbol.asyncIterator" | "Symbol.for" | "Symbol.hasInstance" | "Symbol.isConcatSpreadable" | "Symbol.iterator" | "Symbol.keyFor" | "Symbol.match" | "Symbol.matchAll" | "Symbol.replace" | "Symbol.search" | "Symbol.species" | "Symbol.split" | "Symbol.toPrimitive" | "Symbol.toStringTag" | "Symbol.unscopables" | "SyntaxError" | "TypeError" | "URIError" | "Uint16Array" | "Uint16Array.BYTES_PER_ELEMENT" | "Uint16Array.from" | "Uint16Array.name" | "Uint16Array.of" | "Uint32Array" | "Uint32Array.BYTES_PER_ELEMENT" | "Uint32Array.from" | "Uint32Array.name" | "Uint32Array.of" | "Uint8Array" | "Uint8Array.BYTES_PER_ELEMENT" | "Uint8Array.from" | "Uint8Array.name" | "Uint8Array.of" | "Uint8ClampedArray" | "Uint8ClampedArray.BYTES_PER_ELEMENT" | "Uint8ClampedArray.from" | "Uint8ClampedArray.name" | "Uint8ClampedArray.of" | "WeakMap" | "WeakRef" | "WeakSet" | "decodeURI" | "decodeURIComponent" | "encodeURI" | "encodeURIComponent" | "escape" | "eval" | "globalThis" | "isFinite" | "isNaN" | "parseFloat" | "parseInt" | "unescape")[]
8509
+ }]
8510
+ // ----- node/no-unsupported-features/es-syntax -----
8511
+ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
8512
+ version?: string
8513
+ ignores?: ("no-accessor-properties" | "accessor-properties" | "accessorProperties" | "no-arbitrary-module-namespace-names" | "arbitrary-module-namespace-names" | "arbitraryModuleNamespaceNames" | "no-array-from" | "array-from" | "arrayFrom" | "no-array-isarray" | "array-isarray" | "arrayIsarray" | "no-array-of" | "array-of" | "arrayOf" | "no-array-prototype-copywithin" | "array-prototype-copywithin" | "arrayPrototypeCopywithin" | "no-array-prototype-entries" | "array-prototype-entries" | "arrayPrototypeEntries" | "no-array-prototype-every" | "array-prototype-every" | "arrayPrototypeEvery" | "no-array-prototype-fill" | "array-prototype-fill" | "arrayPrototypeFill" | "no-array-prototype-filter" | "array-prototype-filter" | "arrayPrototypeFilter" | "no-array-prototype-find" | "array-prototype-find" | "arrayPrototypeFind" | "no-array-prototype-findindex" | "array-prototype-findindex" | "arrayPrototypeFindindex" | "no-array-prototype-findlast-findlastindex" | "array-prototype-findlast-findlastindex" | "arrayPrototypeFindlastFindlastindex" | "no-array-prototype-flat" | "array-prototype-flat" | "arrayPrototypeFlat" | "no-array-prototype-foreach" | "array-prototype-foreach" | "arrayPrototypeForeach" | "no-array-prototype-includes" | "array-prototype-includes" | "arrayPrototypeIncludes" | "no-array-prototype-indexof" | "array-prototype-indexof" | "arrayPrototypeIndexof" | "no-array-prototype-keys" | "array-prototype-keys" | "arrayPrototypeKeys" | "no-array-prototype-lastindexof" | "array-prototype-lastindexof" | "arrayPrototypeLastindexof" | "no-array-prototype-map" | "array-prototype-map" | "arrayPrototypeMap" | "no-array-prototype-reduce" | "array-prototype-reduce" | "arrayPrototypeReduce" | "no-array-prototype-reduceright" | "array-prototype-reduceright" | "arrayPrototypeReduceright" | "no-array-prototype-some" | "array-prototype-some" | "arrayPrototypeSome" | "no-array-prototype-toreversed" | "array-prototype-toreversed" | "arrayPrototypeToreversed" | "no-array-prototype-tosorted" | "array-prototype-tosorted" | "arrayPrototypeTosorted" | "no-array-prototype-tospliced" | "array-prototype-tospliced" | "arrayPrototypeTospliced" | "no-array-prototype-values" | "array-prototype-values" | "arrayPrototypeValues" | "no-array-prototype-with" | "array-prototype-with" | "arrayPrototypeWith" | "no-array-string-prototype-at" | "array-string-prototype-at" | "arrayStringPrototypeAt" | "no-arrow-functions" | "arrow-functions" | "arrowFunctions" | "no-async-functions" | "async-functions" | "asyncFunctions" | "no-async-iteration" | "async-iteration" | "asyncIteration" | "no-atomics-waitasync" | "atomics-waitasync" | "atomicsWaitasync" | "no-atomics" | "atomics" | "no-bigint" | "bigint" | "no-binary-numeric-literals" | "binary-numeric-literals" | "binaryNumericLiterals" | "no-block-scoped-functions" | "block-scoped-functions" | "blockScopedFunctions" | "no-block-scoped-variables" | "block-scoped-variables" | "blockScopedVariables" | "no-class-fields" | "class-fields" | "classFields" | "no-class-static-block" | "class-static-block" | "classStaticBlock" | "no-classes" | "classes" | "no-computed-properties" | "computed-properties" | "computedProperties" | "no-date-now" | "date-now" | "dateNow" | "no-date-prototype-getyear-setyear" | "date-prototype-getyear-setyear" | "datePrototypeGetyearSetyear" | "no-date-prototype-togmtstring" | "date-prototype-togmtstring" | "datePrototypeTogmtstring" | "no-default-parameters" | "default-parameters" | "defaultParameters" | "no-destructuring" | "destructuring" | "no-dynamic-import" | "dynamic-import" | "dynamicImport" | "no-error-cause" | "error-cause" | "errorCause" | "no-escape-unescape" | "escape-unescape" | "escapeUnescape" | "no-exponential-operators" | "exponential-operators" | "exponentialOperators" | "no-export-ns-from" | "export-ns-from" | "exportNsFrom" | "no-for-of-loops" | "for-of-loops" | "forOfLoops" | "no-function-declarations-in-if-statement-clauses-without-block" | "function-declarations-in-if-statement-clauses-without-block" | "functionDeclarationsInIfStatementClausesWithoutBlock" | "no-function-prototype-bind" | "function-prototype-bind" | "functionPrototypeBind" | "no-generators" | "generators" | "no-global-this" | "global-this" | "globalThis" | "no-hashbang" | "hashbang" | "no-import-meta" | "import-meta" | "importMeta" | "no-initializers-in-for-in" | "initializers-in-for-in" | "initializersInForIn" | "no-intl-datetimeformat-prototype-formatrange" | "intl-datetimeformat-prototype-formatrange" | "intlDatetimeformatPrototypeFormatrange" | "no-intl-datetimeformat-prototype-formattoparts" | "intl-datetimeformat-prototype-formattoparts" | "intlDatetimeformatPrototypeFormattoparts" | "no-intl-displaynames" | "intl-displaynames" | "intlDisplaynames" | "no-intl-getcanonicallocales" | "intl-getcanonicallocales" | "intlGetcanonicallocales" | "no-intl-listformat" | "intl-listformat" | "intlListformat" | "no-intl-locale" | "intl-locale" | "intlLocale" | "no-intl-numberformat-prototype-formatrange" | "intl-numberformat-prototype-formatrange" | "intlNumberformatPrototypeFormatrange" | "no-intl-numberformat-prototype-formatrangetoparts" | "intl-numberformat-prototype-formatrangetoparts" | "intlNumberformatPrototypeFormatrangetoparts" | "no-intl-numberformat-prototype-formattoparts" | "intl-numberformat-prototype-formattoparts" | "intlNumberformatPrototypeFormattoparts" | "no-intl-pluralrules-prototype-selectrange" | "intl-pluralrules-prototype-selectrange" | "intlPluralrulesPrototypeSelectrange" | "no-intl-pluralrules" | "intl-pluralrules" | "intlPluralrules" | "no-intl-relativetimeformat" | "intl-relativetimeformat" | "intlRelativetimeformat" | "no-intl-segmenter" | "intl-segmenter" | "intlSegmenter" | "no-intl-supportedvaluesof" | "intl-supportedvaluesof" | "intlSupportedvaluesof" | "no-json-superset" | "json-superset" | "jsonSuperset" | "no-json" | "json" | "no-keyword-properties" | "keyword-properties" | "keywordProperties" | "no-labelled-function-declarations" | "labelled-function-declarations" | "labelledFunctionDeclarations" | "no-legacy-object-prototype-accessor-methods" | "legacy-object-prototype-accessor-methods" | "legacyObjectPrototypeAccessorMethods" | "no-logical-assignment-operators" | "logical-assignment-operators" | "logicalAssignmentOperators" | "no-malformed-template-literals" | "malformed-template-literals" | "malformedTemplateLiterals" | "no-map" | "map" | "no-math-acosh" | "math-acosh" | "mathAcosh" | "no-math-asinh" | "math-asinh" | "mathAsinh" | "no-math-atanh" | "math-atanh" | "mathAtanh" | "no-math-cbrt" | "math-cbrt" | "mathCbrt" | "no-math-clz32" | "math-clz32" | "mathClz32" | "no-math-cosh" | "math-cosh" | "mathCosh" | "no-math-expm1" | "math-expm1" | "mathExpm1" | "no-math-fround" | "math-fround" | "mathFround" | "no-math-hypot" | "math-hypot" | "mathHypot" | "no-math-imul" | "math-imul" | "mathImul" | "no-math-log10" | "math-log10" | "mathLog10" | "no-math-log1p" | "math-log1p" | "mathLog1p" | "no-math-log2" | "math-log2" | "mathLog2" | "no-math-sign" | "math-sign" | "mathSign" | "no-math-sinh" | "math-sinh" | "mathSinh" | "no-math-tanh" | "math-tanh" | "mathTanh" | "no-math-trunc" | "math-trunc" | "mathTrunc" | "no-modules" | "modules" | "no-new-target" | "new-target" | "newTarget" | "new.target" | "no-nullish-coalescing-operators" | "nullish-coalescing-operators" | "nullishCoalescingOperators" | "no-number-epsilon" | "number-epsilon" | "numberEpsilon" | "no-number-isfinite" | "number-isfinite" | "numberIsfinite" | "no-number-isinteger" | "number-isinteger" | "numberIsinteger" | "no-number-isnan" | "number-isnan" | "numberIsnan" | "no-number-issafeinteger" | "number-issafeinteger" | "numberIssafeinteger" | "no-number-maxsafeinteger" | "number-maxsafeinteger" | "numberMaxsafeinteger" | "no-number-minsafeinteger" | "number-minsafeinteger" | "numberMinsafeinteger" | "no-number-parsefloat" | "number-parsefloat" | "numberParsefloat" | "no-number-parseint" | "number-parseint" | "numberParseint" | "no-numeric-separators" | "numeric-separators" | "numericSeparators" | "no-object-assign" | "object-assign" | "objectAssign" | "no-object-create" | "object-create" | "objectCreate" | "no-object-defineproperties" | "object-defineproperties" | "objectDefineproperties" | "no-object-defineproperty" | "object-defineproperty" | "objectDefineproperty" | "no-object-entries" | "object-entries" | "objectEntries" | "no-object-freeze" | "object-freeze" | "objectFreeze" | "no-object-fromentries" | "object-fromentries" | "objectFromentries" | "no-object-getownpropertydescriptor" | "object-getownpropertydescriptor" | "objectGetownpropertydescriptor" | "no-object-getownpropertydescriptors" | "object-getownpropertydescriptors" | "objectGetownpropertydescriptors" | "no-object-getownpropertynames" | "object-getownpropertynames" | "objectGetownpropertynames" | "no-object-getownpropertysymbols" | "object-getownpropertysymbols" | "objectGetownpropertysymbols" | "no-object-getprototypeof" | "object-getprototypeof" | "objectGetprototypeof" | "no-object-hasown" | "object-hasown" | "objectHasown" | "no-object-is" | "object-is" | "objectIs" | "no-object-isextensible" | "object-isextensible" | "objectIsextensible" | "no-object-isfrozen" | "object-isfrozen" | "objectIsfrozen" | "no-object-issealed" | "object-issealed" | "objectIssealed" | "no-object-keys" | "object-keys" | "objectKeys" | "no-object-map-groupby" | "object-map-groupby" | "objectMapGroupby" | "no-object-preventextensions" | "object-preventextensions" | "objectPreventextensions" | "no-object-seal" | "object-seal" | "objectSeal" | "no-object-setprototypeof" | "object-setprototypeof" | "objectSetprototypeof" | "no-object-super-properties" | "object-super-properties" | "objectSuperProperties" | "no-object-values" | "object-values" | "objectValues" | "no-octal-numeric-literals" | "octal-numeric-literals" | "octalNumericLiterals" | "no-optional-catch-binding" | "optional-catch-binding" | "optionalCatchBinding" | "no-optional-chaining" | "optional-chaining" | "optionalChaining" | "no-private-in" | "private-in" | "privateIn" | "no-promise-all-settled" | "promise-all-settled" | "promiseAllSettled" | "no-promise-any" | "promise-any" | "promiseAny" | "no-promise-prototype-finally" | "promise-prototype-finally" | "promisePrototypeFinally" | "no-promise-withresolvers" | "promise-withresolvers" | "promiseWithresolvers" | "no-promise" | "promise" | "no-property-shorthands" | "property-shorthands" | "propertyShorthands" | "no-proxy" | "proxy" | "no-reflect" | "reflect" | "no-regexp-d-flag" | "regexp-d-flag" | "regexpDFlag" | "no-regexp-lookbehind-assertions" | "regexp-lookbehind-assertions" | "regexpLookbehindAssertions" | "regexpLookbehind" | "no-regexp-named-capture-groups" | "regexp-named-capture-groups" | "regexpNamedCaptureGroups" | "no-regexp-prototype-compile" | "regexp-prototype-compile" | "regexpPrototypeCompile" | "no-regexp-prototype-flags" | "regexp-prototype-flags" | "regexpPrototypeFlags" | "no-regexp-s-flag" | "regexp-s-flag" | "regexpSFlag" | "regexpS" | "no-regexp-u-flag" | "regexp-u-flag" | "regexpUFlag" | "regexpU" | "no-regexp-unicode-property-escapes-2019" | "regexp-unicode-property-escapes-2019" | "regexpUnicodePropertyEscapes2019" | "no-regexp-unicode-property-escapes-2020" | "regexp-unicode-property-escapes-2020" | "regexpUnicodePropertyEscapes2020" | "no-regexp-unicode-property-escapes-2021" | "regexp-unicode-property-escapes-2021" | "regexpUnicodePropertyEscapes2021" | "no-regexp-unicode-property-escapes-2022" | "regexp-unicode-property-escapes-2022" | "regexpUnicodePropertyEscapes2022" | "no-regexp-unicode-property-escapes-2023" | "regexp-unicode-property-escapes-2023" | "regexpUnicodePropertyEscapes2023" | "no-regexp-unicode-property-escapes" | "regexp-unicode-property-escapes" | "regexpUnicodePropertyEscapes" | "regexpUnicodeProperties" | "no-regexp-v-flag" | "regexp-v-flag" | "regexpVFlag" | "no-regexp-y-flag" | "regexp-y-flag" | "regexpYFlag" | "regexpY" | "no-resizable-and-growable-arraybuffers" | "resizable-and-growable-arraybuffers" | "resizableAndGrowableArraybuffers" | "no-rest-parameters" | "rest-parameters" | "restParameters" | "no-rest-spread-properties" | "rest-spread-properties" | "restSpreadProperties" | "no-set" | "set" | "no-shadow-catch-param" | "shadow-catch-param" | "shadowCatchParam" | "no-shared-array-buffer" | "shared-array-buffer" | "sharedArrayBuffer" | "no-spread-elements" | "spread-elements" | "spreadElements" | "no-string-create-html-methods" | "string-create-html-methods" | "stringCreateHtmlMethods" | "no-string-fromcodepoint" | "string-fromcodepoint" | "stringFromcodepoint" | "no-string-prototype-codepointat" | "string-prototype-codepointat" | "stringPrototypeCodepointat" | "no-string-prototype-endswith" | "string-prototype-endswith" | "stringPrototypeEndswith" | "no-string-prototype-includes" | "string-prototype-includes" | "stringPrototypeIncludes" | "no-string-prototype-iswellformed-towellformed" | "string-prototype-iswellformed-towellformed" | "stringPrototypeIswellformedTowellformed" | "no-string-prototype-matchall" | "string-prototype-matchall" | "stringPrototypeMatchall" | "no-string-prototype-normalize" | "string-prototype-normalize" | "stringPrototypeNormalize" | "no-string-prototype-padstart-padend" | "string-prototype-padstart-padend" | "stringPrototypePadstartPadend" | "no-string-prototype-repeat" | "string-prototype-repeat" | "stringPrototypeRepeat" | "no-string-prototype-replaceall" | "string-prototype-replaceall" | "stringPrototypeReplaceall" | "no-string-prototype-startswith" | "string-prototype-startswith" | "stringPrototypeStartswith" | "no-string-prototype-substr" | "string-prototype-substr" | "stringPrototypeSubstr" | "no-string-prototype-trim" | "string-prototype-trim" | "stringPrototypeTrim" | "no-string-prototype-trimleft-trimright" | "string-prototype-trimleft-trimright" | "stringPrototypeTrimleftTrimright" | "no-string-prototype-trimstart-trimend" | "string-prototype-trimstart-trimend" | "stringPrototypeTrimstartTrimend" | "no-string-raw" | "string-raw" | "stringRaw" | "no-subclassing-builtins" | "subclassing-builtins" | "subclassingBuiltins" | "no-symbol-prototype-description" | "symbol-prototype-description" | "symbolPrototypeDescription" | "no-symbol" | "symbol" | "no-template-literals" | "template-literals" | "templateLiterals" | "no-top-level-await" | "top-level-await" | "topLevelAwait" | "no-trailing-commas" | "trailing-commas" | "trailingCommas" | "no-trailing-function-commas" | "trailing-function-commas" | "trailingFunctionCommas" | "trailingCommasInFunctions" | "no-typed-arrays" | "typed-arrays" | "typedArrays" | "no-unicode-codepoint-escapes" | "unicode-codepoint-escapes" | "unicodeCodepointEscapes" | "unicodeCodePointEscapes" | "no-weak-map" | "weak-map" | "weakMap" | "no-weak-set" | "weak-set" | "weakSet" | "no-weakrefs" | "weakrefs")[]
8514
+ }]
8515
+ // ----- node/no-unsupported-features/node-builtins -----
8516
+ type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
8517
+ version?: string
8518
+ allowExperimental?: boolean
8519
+ 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.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.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.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "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.isBuiltin" | "module.register" | "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.isBuiltin" | "module.Module.register" | "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.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.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" | "test" | "test.after" | "test.afterEach" | "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.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.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.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "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.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.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")[]
8520
+ }]
8521
+ // ----- node/prefer-global/buffer -----
8522
+ type NodePreferGlobalBuffer = []|[("always" | "never")]
8523
+ // ----- node/prefer-global/console -----
8524
+ type NodePreferGlobalConsole = []|[("always" | "never")]
8525
+ // ----- node/prefer-global/process -----
8526
+ type NodePreferGlobalProcess = []|[("always" | "never")]
8527
+ // ----- node/prefer-global/text-decoder -----
8528
+ type NodePreferGlobalTextDecoder = []|[("always" | "never")]
8529
+ // ----- node/prefer-global/text-encoder -----
8530
+ type NodePreferGlobalTextEncoder = []|[("always" | "never")]
8531
+ // ----- node/prefer-global/url -----
8532
+ type NodePreferGlobalUrl = []|[("always" | "never")]
8533
+ // ----- node/prefer-global/url-search-params -----
8534
+ type NodePreferGlobalUrlSearchParams = []|[("always" | "never")]
8535
+ // ----- node/prefer-node-protocol -----
8536
+ type NodePreferNodeProtocol = []|[{
8537
+ version?: string
8538
+ }]
8539
+ // ----- node/shebang -----
8540
+ type NodeShebang = []|[{
8541
+ convertPath?: ({
8542
+
8543
+ [k: string]: [string, string]
8544
+ } | [{
8545
+
8546
+ include: [string, ...(string)[]]
8547
+ exclude?: string[]
8548
+
8549
+ replace: [string, string]
8550
+ }, ...({
8551
+
8552
+ include: [string, ...(string)[]]
8553
+ exclude?: string[]
8554
+
8555
+ replace: [string, string]
8556
+ })[]])
8557
+ ignoreUnpublished?: boolean
8558
+ additionalExecutables?: string[]
8559
+ executableMap?: {
8560
+ [k: string]: string
8561
+ }
8562
+ }]
8086
8563
  // ----- nonblock-statement-body-position -----
8087
8564
  type NonblockStatementBodyPosition = []|[("beside" | "below" | "any")]|[("beside" | "below" | "any"), {
8088
8565
  overrides?: {
@@ -8192,11 +8669,13 @@ type PerfectionistSortArrayIncludes = []|[{
8192
8669
 
8193
8670
  ignoreCase?: boolean
8194
8671
 
8672
+ alphabet?: string
8673
+
8195
8674
  locales?: (string | string[])
8196
8675
 
8197
8676
  order?: ("asc" | "desc")
8198
8677
 
8199
- type?: ("alphabetical" | "natural" | "line-length")
8678
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8200
8679
  }]
8201
8680
  // ----- perfectionist/sort-classes -----
8202
8681
  type PerfectionistSortClasses = []|[{
@@ -8251,13 +8730,15 @@ type PerfectionistSortClasses = []|[{
8251
8730
 
8252
8731
  ignoreCase?: boolean
8253
8732
 
8733
+ alphabet?: string
8734
+
8254
8735
  locales?: (string | string[])
8255
8736
 
8256
8737
  groups?: (string | string[])[]
8257
8738
 
8258
8739
  order?: ("asc" | "desc")
8259
8740
 
8260
- type?: ("alphabetical" | "natural" | "line-length")
8741
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8261
8742
  }]
8262
8743
  // ----- perfectionist/sort-decorators -----
8263
8744
  type PerfectionistSortDecorators = []|[{
@@ -8282,13 +8763,15 @@ type PerfectionistSortDecorators = []|[{
8282
8763
 
8283
8764
  ignoreCase?: boolean
8284
8765
 
8766
+ alphabet?: string
8767
+
8285
8768
  locales?: (string | string[])
8286
8769
 
8287
8770
  groups?: (string | string[])[]
8288
8771
 
8289
8772
  order?: ("asc" | "desc")
8290
8773
 
8291
- type?: ("alphabetical" | "natural" | "line-length")
8774
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8292
8775
  }]
8293
8776
  // ----- perfectionist/sort-enums -----
8294
8777
  type PerfectionistSortEnums = []|[{
@@ -8305,11 +8788,13 @@ type PerfectionistSortEnums = []|[{
8305
8788
 
8306
8789
  ignoreCase?: boolean
8307
8790
 
8791
+ alphabet?: string
8792
+
8308
8793
  locales?: (string | string[])
8309
8794
 
8310
8795
  order?: ("asc" | "desc")
8311
8796
 
8312
- type?: ("alphabetical" | "natural" | "line-length")
8797
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8313
8798
  }]
8314
8799
  // ----- perfectionist/sort-exports -----
8315
8800
  type PerfectionistSortExports = []|[{
@@ -8324,11 +8809,13 @@ type PerfectionistSortExports = []|[{
8324
8809
 
8325
8810
  ignoreCase?: boolean
8326
8811
 
8812
+ alphabet?: string
8813
+
8327
8814
  locales?: (string | string[])
8328
8815
 
8329
8816
  order?: ("asc" | "desc")
8330
8817
 
8331
- type?: ("alphabetical" | "natural" | "line-length")
8818
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8332
8819
  }]
8333
8820
  // ----- perfectionist/sort-heritage-clauses -----
8334
8821
  type PerfectionistSortHeritageClauses = []|[{
@@ -8341,13 +8828,15 @@ type PerfectionistSortHeritageClauses = []|[{
8341
8828
 
8342
8829
  ignoreCase?: boolean
8343
8830
 
8831
+ alphabet?: string
8832
+
8344
8833
  locales?: (string | string[])
8345
8834
 
8346
8835
  groups?: (string | string[])[]
8347
8836
 
8348
8837
  order?: ("asc" | "desc")
8349
8838
 
8350
- type?: ("alphabetical" | "natural" | "line-length")
8839
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8351
8840
  }]
8352
8841
  // ----- perfectionist/sort-imports -----
8353
8842
  type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
@@ -8384,13 +8873,15 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
8384
8873
 
8385
8874
  ignoreCase?: boolean
8386
8875
 
8876
+ alphabet?: string
8877
+
8387
8878
  locales?: (string | string[])
8388
8879
 
8389
8880
  groups?: (string | string[])[]
8390
8881
 
8391
8882
  order?: ("asc" | "desc")
8392
8883
 
8393
- type?: ("alphabetical" | "natural" | "line-length")
8884
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8394
8885
  })
8395
8886
  type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
8396
8887
  [k: string]: unknown | undefined
@@ -8447,13 +8938,15 @@ type PerfectionistSortInterfaces = []|[{
8447
8938
 
8448
8939
  ignoreCase?: boolean
8449
8940
 
8941
+ alphabet?: string
8942
+
8450
8943
  locales?: (string | string[])
8451
8944
 
8452
8945
  groups?: (string | string[])[]
8453
8946
 
8454
8947
  order?: ("asc" | "desc")
8455
8948
 
8456
- type?: ("alphabetical" | "natural" | "line-length")
8949
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8457
8950
  }]
8458
8951
  // ----- perfectionist/sort-intersection-types -----
8459
8952
  type PerfectionistSortIntersectionTypes = []|[{
@@ -8468,13 +8961,15 @@ type PerfectionistSortIntersectionTypes = []|[{
8468
8961
 
8469
8962
  ignoreCase?: boolean
8470
8963
 
8964
+ alphabet?: string
8965
+
8471
8966
  locales?: (string | string[])
8472
8967
 
8473
8968
  groups?: (string | string[])[]
8474
8969
 
8475
8970
  order?: ("asc" | "desc")
8476
8971
 
8477
- type?: ("alphabetical" | "natural" | "line-length")
8972
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8478
8973
  }]
8479
8974
  // ----- perfectionist/sort-jsx-props -----
8480
8975
  type PerfectionistSortJsxProps = []|[{
@@ -8489,13 +8984,15 @@ type PerfectionistSortJsxProps = []|[{
8489
8984
 
8490
8985
  ignoreCase?: boolean
8491
8986
 
8987
+ alphabet?: string
8988
+
8492
8989
  locales?: (string | string[])
8493
8990
 
8494
8991
  groups?: (string | string[])[]
8495
8992
 
8496
8993
  order?: ("asc" | "desc")
8497
8994
 
8498
- type?: ("alphabetical" | "natural" | "line-length")
8995
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8499
8996
  }]
8500
8997
  // ----- perfectionist/sort-maps -----
8501
8998
  type PerfectionistSortMaps = []|[{
@@ -8508,11 +9005,13 @@ type PerfectionistSortMaps = []|[{
8508
9005
 
8509
9006
  ignoreCase?: boolean
8510
9007
 
9008
+ alphabet?: string
9009
+
8511
9010
  locales?: (string | string[])
8512
9011
 
8513
9012
  order?: ("asc" | "desc")
8514
9013
 
8515
- type?: ("alphabetical" | "natural" | "line-length")
9014
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8516
9015
  }]
8517
9016
  // ----- perfectionist/sort-modules -----
8518
9017
  type PerfectionistSortModules = []|[{
@@ -8561,13 +9060,15 @@ type PerfectionistSortModules = []|[{
8561
9060
 
8562
9061
  ignoreCase?: boolean
8563
9062
 
9063
+ alphabet?: string
9064
+
8564
9065
  locales?: (string | string[])
8565
9066
 
8566
9067
  groups?: (string | string[])[]
8567
9068
 
8568
9069
  order?: ("asc" | "desc")
8569
9070
 
8570
- type?: ("alphabetical" | "natural" | "line-length")
9071
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8571
9072
  }]
8572
9073
  // ----- perfectionist/sort-named-exports -----
8573
9074
  type PerfectionistSortNamedExports = []|[{
@@ -8582,11 +9083,13 @@ type PerfectionistSortNamedExports = []|[{
8582
9083
 
8583
9084
  ignoreCase?: boolean
8584
9085
 
9086
+ alphabet?: string
9087
+
8585
9088
  locales?: (string | string[])
8586
9089
 
8587
9090
  order?: ("asc" | "desc")
8588
9091
 
8589
- type?: ("alphabetical" | "natural" | "line-length")
9092
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8590
9093
  }]
8591
9094
  // ----- perfectionist/sort-named-imports -----
8592
9095
  type PerfectionistSortNamedImports = []|[{
@@ -8603,11 +9106,13 @@ type PerfectionistSortNamedImports = []|[{
8603
9106
 
8604
9107
  ignoreCase?: boolean
8605
9108
 
9109
+ alphabet?: string
9110
+
8606
9111
  locales?: (string | string[])
8607
9112
 
8608
9113
  order?: ("asc" | "desc")
8609
9114
 
8610
- type?: ("alphabetical" | "natural" | "line-length")
9115
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8611
9116
  }]
8612
9117
  // ----- perfectionist/sort-object-types -----
8613
9118
  type PerfectionistSortObjectTypes = []|[{
@@ -8657,16 +9162,18 @@ type PerfectionistSortObjectTypes = []|[{
8657
9162
 
8658
9163
  ignoreCase?: boolean
8659
9164
 
9165
+ alphabet?: string
9166
+
8660
9167
  locales?: (string | string[])
8661
9168
 
8662
9169
  groups?: (string | string[])[]
8663
9170
 
8664
9171
  order?: ("asc" | "desc")
8665
9172
 
8666
- type?: ("alphabetical" | "natural" | "line-length")
9173
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8667
9174
  }]
8668
9175
  // ----- perfectionist/sort-objects -----
8669
- type PerfectionistSortObjects = []|[{
9176
+ type PerfectionistSortObjects = {
8670
9177
 
8671
9178
  destructuredObjects?: (boolean | {
8672
9179
 
@@ -8684,6 +9191,9 @@ type PerfectionistSortObjects = []|[{
8684
9191
  styledComponents?: boolean
8685
9192
 
8686
9193
  partitionByNewLine?: boolean
9194
+ useConfigurationIf?: {
9195
+ allNamesMatchPattern?: string
9196
+ }
8687
9197
 
8688
9198
  specialCharacters?: ("remove" | "trim" | "keep")
8689
9199
 
@@ -8695,14 +9205,16 @@ type PerfectionistSortObjects = []|[{
8695
9205
 
8696
9206
  ignoreCase?: boolean
8697
9207
 
9208
+ alphabet?: string
9209
+
8698
9210
  locales?: (string | string[])
8699
9211
 
8700
9212
  groups?: (string | string[])[]
8701
9213
 
8702
9214
  order?: ("asc" | "desc")
8703
9215
 
8704
- type?: ("alphabetical" | "natural" | "line-length")
8705
- }]
9216
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
9217
+ }[]
8706
9218
  // ----- perfectionist/sort-sets -----
8707
9219
  type PerfectionistSortSets = []|[{
8708
9220
 
@@ -8716,11 +9228,13 @@ type PerfectionistSortSets = []|[{
8716
9228
 
8717
9229
  ignoreCase?: boolean
8718
9230
 
9231
+ alphabet?: string
9232
+
8719
9233
  locales?: (string | string[])
8720
9234
 
8721
9235
  order?: ("asc" | "desc")
8722
9236
 
8723
- type?: ("alphabetical" | "natural" | "line-length")
9237
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8724
9238
  }]
8725
9239
  // ----- perfectionist/sort-switch-case -----
8726
9240
  type PerfectionistSortSwitchCase = []|[{
@@ -8729,11 +9243,13 @@ type PerfectionistSortSwitchCase = []|[{
8729
9243
 
8730
9244
  ignoreCase?: boolean
8731
9245
 
9246
+ alphabet?: string
9247
+
8732
9248
  locales?: (string | string[])
8733
9249
 
8734
9250
  order?: ("asc" | "desc")
8735
9251
 
8736
- type?: ("alphabetical" | "natural" | "line-length")
9252
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8737
9253
  }]
8738
9254
  // ----- perfectionist/sort-union-types -----
8739
9255
  type PerfectionistSortUnionTypes = []|[{
@@ -8748,13 +9264,15 @@ type PerfectionistSortUnionTypes = []|[{
8748
9264
 
8749
9265
  ignoreCase?: boolean
8750
9266
 
9267
+ alphabet?: string
9268
+
8751
9269
  locales?: (string | string[])
8752
9270
 
8753
9271
  groups?: (string | string[])[]
8754
9272
 
8755
9273
  order?: ("asc" | "desc")
8756
9274
 
8757
- type?: ("alphabetical" | "natural" | "line-length")
9275
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8758
9276
  }]
8759
9277
  // ----- perfectionist/sort-variable-declarations -----
8760
9278
  type PerfectionistSortVariableDeclarations = []|[{
@@ -8767,11 +9285,13 @@ type PerfectionistSortVariableDeclarations = []|[{
8767
9285
 
8768
9286
  ignoreCase?: boolean
8769
9287
 
9288
+ alphabet?: string
9289
+
8770
9290
  locales?: (string | string[])
8771
9291
 
8772
9292
  order?: ("asc" | "desc")
8773
9293
 
8774
- type?: ("alphabetical" | "natural" | "line-length")
9294
+ type?: ("alphabetical" | "natural" | "line-length" | "custom")
8775
9295
  }]
8776
9296
  // ----- prefer-arrow-callback -----
8777
9297
  type PreferArrowCallback = []|[{
@@ -9768,12 +10288,6 @@ type Yoda = []|[("always" | "never")]|[("always" | "never"), {
9768
10288
 
9769
10289
 
9770
10290
 
9771
- /**
9772
- * Represents a value that resolves to one or more ESLint flat configurations.
9773
- * @see https://jsr.io/@antfu/eslint-flat-config-utils/doc/~/ResolvableFlatConfig
9774
- */
9775
- type AwaitableFlatConfig = ResolvableFlatConfig<Config$1>
9776
-
9777
10291
  /**
9778
10292
  * Represents the configuration for the linter.
9779
10293
  * This interface extends the {@link Linter.Config} interface, expanding {@link Rules} to include the rules defined in all configurations.
@@ -9783,10 +10297,10 @@ type AwaitableFlatConfig = ResolvableFlatConfig<Config$1>
9783
10297
  interface Config$1 extends Linter.Config<Linter.RulesRecord & Rules> {}
9784
10298
 
9785
10299
  /**
9786
- * Defines a 'composer' for ESLint flat configurations.
9787
- * @see https://jsr.io/@antfu/eslint-flat-config-utils/doc/~/FlatConfigComposer
10300
+ * Represents a value that resolves to one or more ESLint flat configurations.
10301
+ * @see https://jsr.io/@antfu/eslint-flat-config-utils/doc/~/ResolvableFlatConfig
9788
10302
  */
9789
- type ConfigComposer = FlatConfigComposer<Config$1, ConfigNames>
10303
+ type AwaitableFlatConfig = ResolvableFlatConfig<Config$1>
9790
10304
 
9791
10305
  /**
9792
10306
  * Defines the names of the available ESLint configurations.
@@ -9798,6 +10312,7 @@ type ConfigNames =
9798
10312
  | '@bfra.me/javascript/rules'
9799
10313
  | '@bfra.me/jsx'
9800
10314
  | '@bfra.me/eslint-comments/rules'
10315
+ | '@bfra.me/node'
9801
10316
  | '@bfra.me/jsdoc'
9802
10317
  | '@bfra.me/imports'
9803
10318
  | '@bfra.me/command'
@@ -9830,6 +10345,12 @@ type ConfigNames =
9830
10345
  | '@bfra.me/epilogue/dts'
9831
10346
  | '@bfra.me/epilogue'
9832
10347
 
10348
+ /**
10349
+ * Defines a 'composer' for ESLint flat configurations.
10350
+ * @see https://jsr.io/@antfu/eslint-flat-config-utils/doc/~/FlatConfigComposer
10351
+ */
10352
+ type ConfigComposer = FlatConfigComposer<Config$1, ConfigNames>
10353
+
9833
10354
  /**
9834
10355
  * Composes an ESLint configuration object from the provided flat configurations.
9835
10356
  *
@@ -10770,6 +11291,8 @@ type MarkdownOptions = Flatten<OptionsFiles & OptionsOverrides & OptionsPrettier
10770
11291
  */
10771
11292
  declare function markdown(options?: MarkdownOptions): Promise<Config$1[]>;
10772
11293
 
11294
+ declare function node(): Promise<Config$1[]>;
11295
+
10773
11296
  /**
10774
11297
  * Represents the combined options for the Perfectionist ESLint plugin, including options for editor integration, overrides, and the Perfectionist plugin itself.
10775
11298
  */
@@ -10919,4 +11442,4 @@ declare const GLOB_EXCLUDE: string[];
10919
11442
 
10920
11443
  declare const config: ConfigComposer;
10921
11444
 
10922
- export { type AwaitableFlatConfig, type Config$1 as Config, type ConfigComposer, type ConfigNames, type Flatten, GLOB_EXCLUDE, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_SRC, GLOB_SRC_EXT, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_YAML, type JavaScriptOptions, type JsoncOptions, type MarkdownOptions, type Options, type OptionsFiles, type OptionsIsInEditor, type OptionsOverrides, type OptionsPerfectionist, type OptionsPrettier, type OptionsTypeScript, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type PerfectionistOptions, type PrettierOptions, type RegexpOptions, type Rules, type TomlOptions, type TypeScriptOptions, type UnicornOptions, type VitestOptions, type YamlOptions, command, composeConfig, config, config as default, defineConfig, epilogue, eslintComments, ignores, imports, isInEditor, isInGitLifecycle, javascript, jsdoc, jsonc, markdown, perfectionist, prettier, regexp, toml, typescript, unicorn, vitest, yaml };
11445
+ export { type AwaitableFlatConfig, type Config$1 as Config, type ConfigComposer, type ConfigNames, type Flatten, GLOB_EXCLUDE, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_SRC, GLOB_SRC_EXT, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_YAML, type JavaScriptOptions, type JsoncOptions, type MarkdownOptions, type Options, type OptionsFiles, type OptionsIsInEditor, type OptionsOverrides, type OptionsPerfectionist, type OptionsPrettier, type OptionsTypeScript, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type PerfectionistOptions, type PrettierOptions, type RegexpOptions, type Rules, type TomlOptions, type TypeScriptOptions, type UnicornOptions, type VitestOptions, type YamlOptions, command, composeConfig, config, config as default, defineConfig, epilogue, eslintComments, ignores, imports, isInEditor, isInGitLifecycle, javascript, jsdoc, jsonc, markdown, node, perfectionist, prettier, regexp, toml, typescript, unicorn, vitest, yaml };