@fabdeh/eslint-config 0.11.1 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -63,12 +63,6 @@ interface AngularEslintRuleOptions {
63
63
  * @see https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules/no-attribute-decorator.md
64
64
  */
65
65
  '@angular-eslint/no-attribute-decorator'?: Linter.RuleEntry<[]>;
66
- /*
67
- * Ensures that directives do not implement conflicting lifecycle interfaces.
68
- * @see https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules/no-conflicting-lifecycle.md
69
- * @deprecated
70
- */
71
- '@angular-eslint/no-conflicting-lifecycle'?: Linter.RuleEntry<[]>;
72
66
  /*
73
67
  * Disallow using code which is marked as developer preview
74
68
  * @see https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules/no-developer-preview.md
@@ -170,7 +164,7 @@ interface AngularEslintRuleOptions {
170
164
  */
171
165
  '@angular-eslint/prefer-inject'?: Linter.RuleEntry<[]>;
172
166
  /*
173
- * Ensures component's `changeDetection` is set to `ChangeDetectionStrategy.OnPush`
167
+ * Ensures components do not opt out of the default `ChangeDetectionStrategy.OnPush` change detection strategy
174
168
  * @see https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/docs/rules/prefer-on-push-component-change-detection.md
175
169
  */
176
170
  '@angular-eslint/prefer-on-push-component-change-detection'?: Linter.RuleEntry<[]>;
@@ -547,6 +541,7 @@ type ConditionalComplexity = [] | [{
547
541
  }]; // ----- cyclomatic-complexity -----
548
542
  type CyclomaticComplexity = [] | [{
549
543
  maxComplexity?: number;
544
+ variant?: ("classic" | "modified");
550
545
  }]; // ----- elements-content -----
551
546
  type ElementsContent = [] | [{
552
547
  allowList?: string[];
@@ -883,6 +878,7 @@ type EnforceCanonicalClasses = [] | [{
883
878
  rootFontSize?: number;
884
879
  cwd?: string;
885
880
  collapse?: boolean;
881
+ ignore?: string[];
886
882
  logical?: boolean;
887
883
  }]; // ----- enforce-consistent-class-order -----
888
884
  type EnforceConsistentClassOrder = [] | [{
@@ -1479,6 +1475,7 @@ type EnforceConsistentLineWrapping = [] | [{
1479
1475
  preferSingleLine?: boolean;
1480
1476
  printWidth?: number;
1481
1477
  strictness?: ("strict" | "loose");
1478
+ tabWidth?: number;
1482
1479
  }]; // ----- enforce-consistent-variable-syntax -----
1483
1480
  type EnforceConsistentVariableSyntax = [] | [{
1484
1481
  selectors?: ({
@@ -4814,7 +4811,7 @@ interface DefaultRuleOptions {
4814
4811
  */
4815
4812
  'quotes'?: Linter.RuleEntry<Quotes$3>;
4816
4813
  /*
4817
- * Enforce the consistent use of the radix argument when using `parseInt()`
4814
+ * Enforce the use of the radix argument when using `parseInt()`
4818
4815
  * @see https://eslint.org/docs/latest/rules/radix
4819
4816
  */
4820
4817
  'radix'?: Linter.RuleEntry<Radix>;
@@ -5698,6 +5695,7 @@ type MaxParams$1 = [] | [(number | {
5698
5695
  maximum?: number;
5699
5696
  max?: number;
5700
5697
  countVoidThis?: boolean;
5698
+ countThis?: ("never" | "except-void" | "always");
5701
5699
  })]; // ----- max-statements -----
5702
5700
  type MaxStatements = [] | [(number | {
5703
5701
  maximum?: number;
@@ -6805,63 +6803,63 @@ type PreferNamespaceImport = [] | [{
6805
6803
  patterns?: string[];
6806
6804
  }];
6807
6805
  //#endregion
6808
- //#region src/typegen/jest-dom-rules.d.ts
6809
- interface JestDomRuleOptions {
6806
+ //#region src/typegen/jest-dom-ya-rules.d.ts
6807
+ interface JestDomYaRuleOptions {
6810
6808
  /*
6811
6809
  * prefer toBeChecked over checking attributes
6812
6810
  * @see prefer-checked
6813
6811
  */
6814
- 'jest-dom/prefer-checked'?: Linter.RuleEntry<[]>;
6812
+ 'jest-dom-ya/prefer-checked'?: Linter.RuleEntry<[]>;
6815
6813
  /*
6816
6814
  * Prefer toBeEmpty over checking innerHTML
6817
6815
  * @see prefer-empty
6818
6816
  */
6819
- 'jest-dom/prefer-empty'?: Linter.RuleEntry<[]>;
6817
+ 'jest-dom-ya/prefer-empty'?: Linter.RuleEntry<[]>;
6820
6818
  /*
6821
6819
  * prefer toBeDisabled or toBeEnabled over checking attributes
6822
6820
  * @see prefer-enabled-disabled
6823
6821
  */
6824
- 'jest-dom/prefer-enabled-disabled'?: Linter.RuleEntry<[]>;
6822
+ 'jest-dom-ya/prefer-enabled-disabled'?: Linter.RuleEntry<[]>;
6825
6823
  /*
6826
6824
  * prefer toHaveFocus over checking document.activeElement
6827
6825
  * @see prefer-focus
6828
6826
  */
6829
- 'jest-dom/prefer-focus'?: Linter.RuleEntry<[]>;
6827
+ 'jest-dom-ya/prefer-focus'?: Linter.RuleEntry<[]>;
6830
6828
  /*
6831
6829
  * Prefer .toBeInTheDocument() for asserting the existence of a DOM node
6832
6830
  * @see prefer-in-document
6833
6831
  */
6834
- 'jest-dom/prefer-in-document'?: Linter.RuleEntry<[]>;
6832
+ 'jest-dom-ya/prefer-in-document'?: Linter.RuleEntry<[]>;
6835
6833
  /*
6836
6834
  * prefer toBeRequired over checking properties
6837
6835
  * @see prefer-required
6838
6836
  */
6839
- 'jest-dom/prefer-required'?: Linter.RuleEntry<[]>;
6837
+ 'jest-dom-ya/prefer-required'?: Linter.RuleEntry<[]>;
6840
6838
  /*
6841
6839
  * prefer toHaveAttribute over checking getAttribute/hasAttribute
6842
6840
  * @see prefer-to-have-attribute
6843
6841
  */
6844
- 'jest-dom/prefer-to-have-attribute'?: Linter.RuleEntry<[]>;
6842
+ 'jest-dom-ya/prefer-to-have-attribute'?: Linter.RuleEntry<[]>;
6845
6843
  /*
6846
6844
  * prefer toHaveClass over checking element className
6847
6845
  * @see prefer-to-have-class
6848
6846
  */
6849
- 'jest-dom/prefer-to-have-class'?: Linter.RuleEntry<[]>;
6847
+ 'jest-dom-ya/prefer-to-have-class'?: Linter.RuleEntry<[]>;
6850
6848
  /*
6851
6849
  * prefer toHaveStyle over checking element style
6852
6850
  * @see prefer-to-have-style
6853
6851
  */
6854
- 'jest-dom/prefer-to-have-style'?: Linter.RuleEntry<[]>;
6852
+ 'jest-dom-ya/prefer-to-have-style'?: Linter.RuleEntry<[]>;
6855
6853
  /*
6856
6854
  * Prefer toHaveTextContent over checking element.textContent
6857
6855
  * @see prefer-to-have-text-content
6858
6856
  */
6859
- 'jest-dom/prefer-to-have-text-content'?: Linter.RuleEntry<[]>;
6857
+ 'jest-dom-ya/prefer-to-have-text-content'?: Linter.RuleEntry<[]>;
6860
6858
  /*
6861
6859
  * prefer toHaveValue over checking element.value
6862
6860
  * @see prefer-to-have-value
6863
6861
  */
6864
- 'jest-dom/prefer-to-have-value'?: Linter.RuleEntry<[]>;
6862
+ 'jest-dom-ya/prefer-to-have-value'?: Linter.RuleEntry<[]>;
6865
6863
  }
6866
6864
  //#endregion
6867
6865
  //#region src/typegen/jsdoc-rules.d.ts
@@ -8741,7 +8739,6 @@ type NoUnpublishedBin = [] | [{
8741
8739
  exclude?: string[];
8742
8740
  replace: [string, string];
8743
8741
  })[]]);
8744
- [k: string]: unknown | undefined;
8745
8742
  }]; // ----- no-unpublished-import -----
8746
8743
  type NoUnpublishedImport = [] | [{
8747
8744
  allowModules?: string[];
@@ -8795,7 +8792,7 @@ type NoUnsupportedFeaturesEsSyntax = [] | [{
8795
8792
  type NoUnsupportedFeaturesNodeBuiltins = [] | [{
8796
8793
  version?: string;
8797
8794
  allowExperimental?: boolean;
8798
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
8795
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.locks" | "navigator.locks.request" | "navigator.locks.query" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decapsulateBits" | "crypto.subtle.decapsulateKey" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encapsulateBits" | "crypto.subtle.encapsulateKey" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.getPublicKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "SubtleCrypto.supports" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decapsulateBits" | "crypto.webcrypto.subtle.decapsulateKey" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encapsulateBits" | "crypto.webcrypto.subtle.encapsulateKey" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.getPublicKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.argon2" | "crypto.argon2Sync" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.decapsulate" | "crypto.diffieHellman" | "crypto.encapsulate" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.mkdtempDisposable" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.mkdtempDisposableSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.Utf8Stream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.mkdtempDisposable" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent()" | "http.Agent" | "http.ClientRequest()" | "http.ClientRequest" | "http.Server()" | "http.Server" | "http.ServerResponse()" | "http.ServerResponse" | "http.IncomingMessage()" | "http.IncomingMessage" | "http.OutgoingMessage()" | "http.OutgoingMessage" | "http.WebSocket()" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.webSocketCreated" | "inspector.Network.webSocketHandshakeResponseReceived" | "inspector.Network.webSocketClosed" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.Network.webSocketCreated" | "inspector/promises.Network.webSocketHandshakeResponseReceived" | "inspector/promises.Network.webSocketClosed" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.eventLoopUtilization" | "perf_hooks.timerify" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getAssetKeys" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getAssetKeys" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "_stream_duplex" | "_stream_passthrough" | "_stream_readable" | "_stream_transform" | "_stream_wrap" | "_stream_writable" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.Session" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.property" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "_tls_common" | "_tls_wrap" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "v8.startCpuProfile" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.threadName" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.locks" | "worker_threads.locks.request" | "worker_threads.locks.query" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
8799
8796
  }]; // ----- prefer-global/buffer -----
8800
8797
  type PreferGlobalBuffer = [] | [("always" | "never")]; // ----- prefer-global/console -----
8801
8798
  type PreferGlobalConsole = [] | [("always" | "never")]; // ----- prefer-global/crypto -----
@@ -9472,6 +9469,7 @@ type SortClasses = {
9472
9469
  matchesAstSelector?: string;
9473
9470
  };
9474
9471
  useExperimentalDependencyDetection?: boolean;
9472
+ newlinesBetweenOverloadSignatures?: ("ignore" | number);
9475
9473
  ignoreCallbackDependenciesPatterns?: (({
9476
9474
  pattern: string;
9477
9475
  flags?: string;
@@ -10835,6 +10833,7 @@ type SortModules = [] | [{
10835
10833
  })[];
10836
10834
  newlinesBetween?: ("ignore" | number);
10837
10835
  useExperimentalDependencyDetection?: boolean;
10836
+ newlinesBetweenOverloadSignatures?: ("ignore" | number);
10838
10837
  partitionByComment?: (boolean | (({
10839
10838
  pattern: string;
10840
10839
  flags?: string;
@@ -16022,771 +16021,956 @@ type UnifiedSignatures = [] | [{
16022
16021
  //#region src/typegen/unicorn-rules.d.ts
16023
16022
  interface UnicornRuleOptions {
16024
16023
  /*
16025
- * Improve regexes by making them shorter, consistent, and safer.
16026
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/better-regex.md
16024
+ * Prefer better DOM traversal APIs.
16025
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/better-dom-traversing.md
16026
+ */
16027
+ 'unicorn/better-dom-traversing'?: Linter.RuleEntry<[]>;
16028
+ /*
16029
+ * Removed. Prefer `eslint-plugin-regexp`
16030
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#better-regex
16031
+ * @deprecated
16027
16032
  */
16028
- 'unicorn/better-regex'?: Linter.RuleEntry<BetterRegex>;
16033
+ 'unicorn/better-regex'?: Linter.RuleEntry<[]>;
16029
16034
  /*
16030
16035
  * Enforce a specific parameter name in catch clauses.
16031
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/catch-error-name.md
16036
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/catch-error-name.md
16032
16037
  */
16033
16038
  'unicorn/catch-error-name'?: Linter.RuleEntry<CatchErrorName>;
16034
16039
  /*
16035
16040
  * Enforce consistent assertion style with `node:assert`.
16036
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-assert.md
16041
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-assert.md
16037
16042
  */
16038
16043
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
16044
+ /*
16045
+ * Enforce consistent spelling of compound words in identifiers.
16046
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-compound-words.md
16047
+ */
16048
+ 'unicorn/consistent-compound-words'?: Linter.RuleEntry<ConsistentCompoundWords>;
16039
16049
  /*
16040
16050
  * Prefer passing `Date` directly to the constructor when cloning.
16041
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-date-clone.md
16051
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-date-clone.md
16042
16052
  */
16043
16053
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
16044
16054
  /*
16045
16055
  * Use destructured variables over properties.
16046
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-destructuring.md
16056
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-destructuring.md
16047
16057
  */
16048
16058
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
16049
16059
  /*
16050
16060
  * Prefer consistent types when spreading a ternary in an array literal.
16051
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-empty-array-spread.md
16061
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-empty-array-spread.md
16052
16062
  */
16053
16063
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
16054
16064
  /*
16055
16065
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
16056
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-existence-index-check.md
16066
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-existence-index-check.md
16057
16067
  */
16058
16068
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
16059
16069
  /*
16060
16070
  * Move function definitions to the highest possible scope.
16061
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-function-scoping.md
16071
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-function-scoping.md
16062
16072
  */
16063
16073
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<ConsistentFunctionScoping>;
16074
+ /*
16075
+ * Enforce consistent JSON file reads before `JSON.parse()`.
16076
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-json-file-read.md
16077
+ */
16078
+ 'unicorn/consistent-json-file-read'?: Linter.RuleEntry<ConsistentJsonFileRead>;
16064
16079
  /*
16065
16080
  * Enforce consistent style for escaping `${` in template literals.
16066
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/consistent-template-literal-escape.md
16081
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/consistent-template-literal-escape.md
16067
16082
  */
16068
16083
  'unicorn/consistent-template-literal-escape'?: Linter.RuleEntry<[]>;
16069
16084
  /*
16070
16085
  * Enforce correct `Error` subclassing.
16071
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/custom-error-definition.md
16086
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/custom-error-definition.md
16072
16087
  */
16073
16088
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
16089
+ /*
16090
+ * Enforce consistent style for DOM element dataset access.
16091
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/dom-node-dataset.md
16092
+ */
16093
+ 'unicorn/dom-node-dataset'?: Linter.RuleEntry<DomNodeDataset>;
16074
16094
  /*
16075
16095
  * Enforce no spaces between braces.
16076
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/empty-brace-spaces.md
16096
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/empty-brace-spaces.md
16077
16097
  */
16078
16098
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
16079
16099
  /*
16080
16100
  * Enforce passing a `message` value when creating a built-in error.
16081
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/error-message.md
16101
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/error-message.md
16082
16102
  */
16083
16103
  'unicorn/error-message'?: Linter.RuleEntry<[]>;
16084
16104
  /*
16085
16105
  * Require escape sequences to use uppercase or lowercase values.
16086
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/escape-case.md
16106
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/escape-case.md
16087
16107
  */
16088
16108
  'unicorn/escape-case'?: Linter.RuleEntry<EscapeCase>;
16089
16109
  /*
16090
16110
  * Add expiration conditions to TODO comments.
16091
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/expiring-todo-comments.md
16111
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/expiring-todo-comments.md
16092
16112
  */
16093
16113
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<ExpiringTodoComments>;
16094
16114
  /*
16095
16115
  * Enforce explicitly comparing the `length` or `size` property of a value.
16096
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/explicit-length-check.md
16116
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/explicit-length-check.md
16097
16117
  */
16098
16118
  'unicorn/explicit-length-check'?: Linter.RuleEntry<ExplicitLengthCheck>;
16099
16119
  /*
16100
- * Enforce a case style for filenames.
16101
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/filename-case.md
16120
+ * Enforce a case style for filenames and directory names.
16121
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/filename-case.md
16102
16122
  */
16103
16123
  'unicorn/filename-case'?: Linter.RuleEntry<FilenameCase>;
16104
16124
  /*
16105
16125
  * Enforce specific import styles per module.
16106
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/import-style.md
16126
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/import-style.md
16107
16127
  */
16108
16128
  'unicorn/import-style'?: Linter.RuleEntry<ImportStyle>;
16109
16129
  /*
16110
16130
  * Prevent usage of variables from outside the scope of isolated functions.
16111
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/isolated-functions.md
16131
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/isolated-functions.md
16112
16132
  */
16113
16133
  'unicorn/isolated-functions'?: Linter.RuleEntry<IsolatedFunctions>;
16114
16134
  /*
16115
16135
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
16116
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/new-for-builtins.md
16136
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/new-for-builtins.md
16117
16137
  */
16118
16138
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
16119
16139
  /*
16120
16140
  * Enforce specifying rules to disable in `eslint-disable` comments.
16121
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-abusive-eslint-disable.md
16141
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-abusive-eslint-disable.md
16122
16142
  */
16123
16143
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
16124
16144
  /*
16125
16145
  * Disallow recursive access to `this` within getters and setters.
16126
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-accessor-recursion.md
16146
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-accessor-recursion.md
16127
16147
  */
16128
16148
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
16129
16149
  /*
16130
16150
  * Disallow anonymous functions and classes as the default export.
16131
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-anonymous-default-export.md
16151
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-anonymous-default-export.md
16132
16152
  */
16133
16153
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
16134
16154
  /*
16135
16155
  * Prevent passing a function reference directly to iterator methods.
16136
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-callback-reference.md
16156
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-callback-reference.md
16157
+ */
16158
+ 'unicorn/no-array-callback-reference'?: Linter.RuleEntry<NoArrayCallbackReference>;
16159
+ /*
16160
+ * Disallow using reference values as `Array#fill()` values.
16161
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-fill-with-reference-type.md
16137
16162
  */
16138
- 'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
16163
+ 'unicorn/no-array-fill-with-reference-type'?: Linter.RuleEntry<[]>;
16139
16164
  /*
16140
16165
  * Prefer `for…of` over the `forEach` method.
16141
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-for-each.md
16166
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-for-each.md
16142
16167
  */
16143
16168
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
16169
+ /*
16170
+ * Disallow `.fill()` after `Array.from({length: …})`.
16171
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-from-fill.md
16172
+ */
16173
+ 'unicorn/no-array-from-fill'?: Linter.RuleEntry<[]>;
16144
16174
  /*
16145
16175
  * Disallow using the `this` argument in array methods.
16146
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-method-this-argument.md
16176
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-method-this-argument.md
16147
16177
  */
16148
16178
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
16149
16179
  /*
16150
16180
  * Replaced by `unicorn/prefer-single-call` which covers more cases.
16151
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-array-push-push
16181
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#no-array-push-push
16152
16182
  * @deprecated
16153
16183
  */
16154
16184
  'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
16155
16185
  /*
16156
16186
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
16157
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-reduce.md
16187
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-reduce.md
16158
16188
  */
16159
16189
  'unicorn/no-array-reduce'?: Linter.RuleEntry<NoArrayReduce>;
16160
16190
  /*
16161
16191
  * Prefer `Array#toReversed()` over `Array#reverse()`.
16162
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-reverse.md
16192
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-reverse.md
16163
16193
  */
16164
16194
  'unicorn/no-array-reverse'?: Linter.RuleEntry<NoArrayReverse>;
16165
16195
  /*
16166
16196
  * Prefer `Array#toSorted()` over `Array#sort()`.
16167
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-array-sort.md
16197
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-array-sort.md
16168
16198
  */
16169
16199
  'unicorn/no-array-sort'?: Linter.RuleEntry<NoArraySort>;
16170
16200
  /*
16171
16201
  * Disallow member access from await expression.
16172
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-await-expression-member.md
16202
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-await-expression-member.md
16173
16203
  */
16174
16204
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
16175
16205
  /*
16176
16206
  * Disallow using `await` in `Promise` method parameters.
16177
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-await-in-promise-methods.md
16207
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-await-in-promise-methods.md
16178
16208
  */
16179
16209
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
16210
+ /*
16211
+ * Disallow unnecessary `Blob` to `File` conversion.
16212
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-blob-to-file.md
16213
+ */
16214
+ 'unicorn/no-blob-to-file'?: Linter.RuleEntry<[]>;
16215
+ /*
16216
+ * Prefer drawing canvases directly instead of converting them to images.
16217
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-canvas-to-image.md
16218
+ */
16219
+ 'unicorn/no-canvas-to-image'?: Linter.RuleEntry<[]>;
16220
+ /*
16221
+ * Disallow confusing uses of `Array#{splice,toSpliced}()`.
16222
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-confusing-array-splice.md
16223
+ */
16224
+ 'unicorn/no-confusing-array-splice'?: Linter.RuleEntry<[]>;
16180
16225
  /*
16181
16226
  * Do not use leading/trailing space between `console.log` parameters.
16182
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-console-spaces.md
16227
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-console-spaces.md
16183
16228
  */
16184
16229
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
16185
16230
  /*
16186
16231
  * Do not use `document.cookie` directly.
16187
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-document-cookie.md
16232
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-document-cookie.md
16188
16233
  */
16189
16234
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
16235
+ /*
16236
+ * Disallow duplicate values in `Set` constructor array literals.
16237
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-duplicate-set-values.md
16238
+ */
16239
+ 'unicorn/no-duplicate-set-values'?: Linter.RuleEntry<[]>;
16190
16240
  /*
16191
16241
  * Disallow empty files.
16192
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-empty-file.md
16242
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-empty-file.md
16243
+ */
16244
+ 'unicorn/no-empty-file'?: Linter.RuleEntry<NoEmptyFile>;
16245
+ /*
16246
+ * Disallow exports in scripts.
16247
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-exports-in-scripts.md
16193
16248
  */
16194
- 'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
16249
+ 'unicorn/no-exports-in-scripts'?: Linter.RuleEntry<[]>;
16195
16250
  /*
16196
16251
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
16197
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-for-loop.md
16252
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-for-loop.md
16198
16253
  */
16199
16254
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
16200
16255
  /*
16201
16256
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
16202
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-hex-escape.md
16257
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-hex-escape.md
16203
16258
  */
16204
16259
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
16205
16260
  /*
16206
16261
  * Disallow immediate mutation after variable assignment.
16207
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-immediate-mutation.md
16262
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-immediate-mutation.md
16208
16263
  */
16209
16264
  'unicorn/no-immediate-mutation'?: Linter.RuleEntry<[]>;
16265
+ /*
16266
+ * Disallow incorrect `querySelector()` and `querySelectorAll()` usage.
16267
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-incorrect-query-selector.md
16268
+ */
16269
+ 'unicorn/no-incorrect-query-selector'?: Linter.RuleEntry<[]>;
16210
16270
  /*
16211
16271
  * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
16212
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-instanceof-array
16272
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#no-instanceof-array
16213
16273
  * @deprecated
16214
16274
  */
16215
16275
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
16216
16276
  /*
16217
16277
  * Disallow `instanceof` with built-in objects
16218
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-instanceof-builtins.md
16278
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-instanceof-builtins.md
16219
16279
  */
16220
16280
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<NoInstanceofBuiltins>;
16221
16281
  /*
16222
16282
  * Disallow invalid options in `fetch()` and `new Request()`.
16223
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-invalid-fetch-options.md
16283
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-invalid-fetch-options.md
16224
16284
  */
16225
16285
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
16286
+ /*
16287
+ * Disallow invalid `accept` values on file inputs.
16288
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-invalid-file-input-accept.md
16289
+ */
16290
+ 'unicorn/no-invalid-file-input-accept'?: Linter.RuleEntry<[]>;
16226
16291
  /*
16227
16292
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
16228
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-invalid-remove-event-listener.md
16293
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-invalid-remove-event-listener.md
16229
16294
  */
16230
16295
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
16231
16296
  /*
16232
16297
  * Disallow identifiers starting with `new` or `class`.
16233
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-keyword-prefix.md
16298
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-keyword-prefix.md
16234
16299
  */
16235
16300
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<NoKeywordPrefix>;
16301
+ /*
16302
+ * Disallow accessing `event.currentTarget` after the synchronous event dispatch has finished.
16303
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-late-current-target-access.md
16304
+ */
16305
+ 'unicorn/no-late-current-target-access'?: Linter.RuleEntry<[]>;
16236
16306
  /*
16237
16307
  * Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
16238
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
16308
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#no-length-as-slice-end
16239
16309
  * @deprecated
16240
16310
  */
16241
16311
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
16242
16312
  /*
16243
16313
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
16244
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-lonely-if.md
16314
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-lonely-if.md
16245
16315
  */
16246
16316
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
16247
16317
  /*
16248
16318
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
16249
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-magic-array-flat-depth.md
16319
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-magic-array-flat-depth.md
16250
16320
  */
16251
16321
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
16322
+ /*
16323
+ * Disallow manually wrapped comments.
16324
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-manually-wrapped-comments.md
16325
+ */
16326
+ 'unicorn/no-manually-wrapped-comments'?: Linter.RuleEntry<[]>;
16252
16327
  /*
16253
16328
  * Disallow named usage of default import and export.
16254
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-named-default.md
16329
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-named-default.md
16255
16330
  */
16256
16331
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
16257
16332
  /*
16258
16333
  * Disallow negated conditions.
16259
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-negated-condition.md
16334
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-negated-condition.md
16260
16335
  */
16261
16336
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
16262
16337
  /*
16263
16338
  * Disallow negated expression in equality check.
16264
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-negation-in-equality-check.md
16339
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-negation-in-equality-check.md
16265
16340
  */
16266
16341
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
16267
16342
  /*
16268
16343
  * Disallow nested ternary expressions.
16269
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-nested-ternary.md
16344
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-nested-ternary.md
16270
16345
  */
16271
16346
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
16272
16347
  /*
16273
16348
  * Disallow `new Array()`.
16274
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-new-array.md
16349
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-new-array.md
16275
16350
  */
16276
16351
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
16277
16352
  /*
16278
16353
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
16279
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-new-buffer.md
16354
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-new-buffer.md
16280
16355
  */
16281
16356
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
16282
16357
  /*
16283
16358
  * Disallow the use of the `null` literal.
16284
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-null.md
16359
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-null.md
16285
16360
  */
16286
16361
  'unicorn/no-null'?: Linter.RuleEntry<NoNull>;
16287
16362
  /*
16288
16363
  * Disallow the use of objects as default parameters.
16289
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-object-as-default-parameter.md
16364
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-object-as-default-parameter.md
16290
16365
  */
16291
16366
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
16292
16367
  /*
16293
16368
  * Disallow `process.exit()`.
16294
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-process-exit.md
16369
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-process-exit.md
16295
16370
  */
16296
16371
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
16297
16372
  /*
16298
16373
  * Disallow passing single-element arrays to `Promise` methods.
16299
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-single-promise-in-promise-methods.md
16374
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-single-promise-in-promise-methods.md
16300
16375
  */
16301
16376
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
16302
16377
  /*
16303
16378
  * Disallow classes that only have static members.
16304
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-static-only-class.md
16379
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-static-only-class.md
16305
16380
  */
16306
16381
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
16307
16382
  /*
16308
16383
  * Disallow `then` property.
16309
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-thenable.md
16384
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-thenable.md
16310
16385
  */
16311
16386
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
16312
16387
  /*
16313
16388
  * Disallow assigning `this` to a variable.
16314
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-this-assignment.md
16389
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-this-assignment.md
16315
16390
  */
16316
16391
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
16392
+ /*
16393
+ * Disallow `this` outside of classes.
16394
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-this-outside-of-class.md
16395
+ */
16396
+ 'unicorn/no-this-outside-of-class'?: Linter.RuleEntry<[]>;
16317
16397
  /*
16318
16398
  * Disallow comparing `undefined` using `typeof`.
16319
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-typeof-undefined.md
16399
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-typeof-undefined.md
16320
16400
  */
16321
16401
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<NoTypeofUndefined>;
16322
16402
  /*
16323
16403
  * Disallow using `1` as the `depth` argument of `Array#flat()`.
16324
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-array-flat-depth.md
16404
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-array-flat-depth.md
16325
16405
  */
16326
16406
  'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
16327
16407
  /*
16328
16408
  * Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
16329
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-array-splice-count.md
16409
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-array-splice-count.md
16330
16410
  */
16331
16411
  'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
16332
16412
  /*
16333
16413
  * Disallow awaiting non-promise values.
16334
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-await.md
16414
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-await.md
16335
16415
  */
16336
16416
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
16417
+ /*
16418
+ * Disallow unnecessary nested ternary expressions.
16419
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-nested-ternary.md
16420
+ */
16421
+ 'unicorn/no-unnecessary-nested-ternary'?: Linter.RuleEntry<[]>;
16337
16422
  /*
16338
16423
  * Enforce the use of built-in methods instead of unnecessary polyfills.
16339
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-polyfills.md
16424
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-polyfills.md
16340
16425
  */
16341
16426
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<NoUnnecessaryPolyfills>;
16342
16427
  /*
16343
16428
  * Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
16344
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unnecessary-slice-end.md
16429
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unnecessary-slice-end.md
16345
16430
  */
16346
16431
  'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
16347
16432
  /*
16348
16433
  * Disallow unreadable array destructuring.
16349
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unreadable-array-destructuring.md
16434
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unreadable-array-destructuring.md
16350
16435
  */
16351
16436
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
16352
16437
  /*
16353
16438
  * Disallow unreadable IIFEs.
16354
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unreadable-iife.md
16439
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unreadable-iife.md
16355
16440
  */
16356
16441
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
16442
+ /*
16443
+ * Disallow ignoring the return value of selected array methods.
16444
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unused-array-method-return.md
16445
+ */
16446
+ 'unicorn/no-unused-array-method-return'?: Linter.RuleEntry<[]>;
16357
16447
  /*
16358
16448
  * Disallow unused object properties.
16359
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-unused-properties.md
16449
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-unused-properties.md
16360
16450
  */
16361
16451
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
16362
16452
  /*
16363
16453
  * Disallow useless values or fallbacks in `Set`, `Map`, `WeakSet`, or `WeakMap`.
16364
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-collection-argument.md
16454
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-collection-argument.md
16365
16455
  */
16366
16456
  'unicorn/no-useless-collection-argument'?: Linter.RuleEntry<[]>;
16367
16457
  /*
16368
16458
  * Disallow unnecessary `Error.captureStackTrace(…)`.
16369
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-error-capture-stack-trace.md
16459
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-error-capture-stack-trace.md
16370
16460
  */
16371
16461
  'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
16372
16462
  /*
16373
16463
  * Disallow useless fallback when spreading in object literals.
16374
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-fallback-in-spread.md
16464
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-fallback-in-spread.md
16375
16465
  */
16376
16466
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
16377
16467
  /*
16378
16468
  * Disallow unnecessary `.toArray()` on iterators.
16379
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-iterator-to-array.md
16469
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-iterator-to-array.md
16380
16470
  */
16381
16471
  'unicorn/no-useless-iterator-to-array'?: Linter.RuleEntry<[]>;
16382
16472
  /*
16383
16473
  * Disallow useless array length check.
16384
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-length-check.md
16474
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-length-check.md
16385
16475
  */
16386
16476
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
16387
16477
  /*
16388
16478
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
16389
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-promise-resolve-reject.md
16479
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-promise-resolve-reject.md
16390
16480
  */
16391
16481
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
16392
16482
  /*
16393
16483
  * Disallow unnecessary spread.
16394
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-spread.md
16484
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-spread.md
16395
16485
  */
16396
16486
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
16397
16487
  /*
16398
16488
  * Disallow useless case in switch statements.
16399
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-switch-case.md
16489
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-switch-case.md
16400
16490
  */
16401
16491
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
16402
16492
  /*
16403
16493
  * Disallow useless `undefined`.
16404
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-useless-undefined.md
16494
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-useless-undefined.md
16405
16495
  */
16406
16496
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<NoUselessUndefined>;
16407
16497
  /*
16408
16498
  * Disallow number literals with zero fractions or dangling dots.
16409
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/no-zero-fractions.md
16499
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/no-zero-fractions.md
16410
16500
  */
16411
16501
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
16412
16502
  /*
16413
16503
  * Enforce proper case for numeric literals.
16414
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/number-literal-case.md
16504
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/number-literal-case.md
16415
16505
  */
16416
16506
  'unicorn/number-literal-case'?: Linter.RuleEntry<NumberLiteralCase>;
16417
16507
  /*
16418
16508
  * Enforce the style of numeric separators by correctly grouping digits.
16419
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/numeric-separators-style.md
16509
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/numeric-separators-style.md
16420
16510
  */
16421
16511
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<NumericSeparatorsStyle>;
16422
16512
  /*
16423
16513
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
16424
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-add-event-listener.md
16514
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-add-event-listener.md
16425
16515
  */
16426
16516
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<PreferAddEventListener>;
16427
16517
  /*
16428
16518
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
16429
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-find.md
16519
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-find.md
16430
16520
  */
16431
16521
  'unicorn/prefer-array-find'?: Linter.RuleEntry<PreferArrayFind>;
16432
16522
  /*
16433
16523
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
16434
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-flat.md
16524
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-flat.md
16435
16525
  */
16436
16526
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<PreferArrayFlat>;
16437
16527
  /*
16438
16528
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
16439
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-flat-map.md
16529
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-flat-map.md
16440
16530
  */
16441
16531
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
16442
16532
  /*
16443
16533
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
16444
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-index-of.md
16534
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-index-of.md
16445
16535
  */
16446
16536
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
16537
+ /*
16538
+ * Prefer last-oriented array methods over `Array#reverse()` or `Array#toReversed()` followed by a method.
16539
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-last-methods.md
16540
+ */
16541
+ 'unicorn/prefer-array-last-methods'?: Linter.RuleEntry<[]>;
16447
16542
  /*
16448
16543
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
16449
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-array-some.md
16544
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-array-some.md
16450
16545
  */
16451
16546
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
16452
16547
  /*
16453
16548
  * Prefer `.at()` method for index access and `String#charAt()`.
16454
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-at.md
16549
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-at.md
16455
16550
  */
16456
16551
  'unicorn/prefer-at'?: Linter.RuleEntry<PreferAt>;
16457
16552
  /*
16458
16553
  * Prefer `BigInt` literals over the constructor.
16459
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-bigint-literals.md
16554
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-bigint-literals.md
16460
16555
  */
16461
16556
  'unicorn/prefer-bigint-literals'?: Linter.RuleEntry<[]>;
16462
16557
  /*
16463
16558
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
16464
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-blob-reading-methods.md
16559
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-blob-reading-methods.md
16465
16560
  */
16466
16561
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
16467
16562
  /*
16468
16563
  * Prefer class field declarations over `this` assignments in constructors.
16469
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-class-fields.md
16564
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-class-fields.md
16470
16565
  */
16471
16566
  'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
16472
16567
  /*
16473
16568
  * Prefer using `Element#classList.toggle()` to toggle class names.
16474
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-classlist-toggle.md
16569
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-classlist-toggle.md
16475
16570
  */
16476
16571
  'unicorn/prefer-classlist-toggle'?: Linter.RuleEntry<[]>;
16477
16572
  /*
16478
16573
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
16479
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-code-point.md
16574
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-code-point.md
16480
16575
  */
16481
16576
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
16482
16577
  /*
16483
16578
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
16484
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-date-now.md
16579
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-date-now.md
16485
16580
  */
16486
16581
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
16487
16582
  /*
16488
16583
  * Prefer default parameters over reassignment.
16489
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-default-parameters.md
16584
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-default-parameters.md
16490
16585
  */
16491
16586
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
16492
16587
  /*
16493
- * Prefer `Node#append()` over `Node#appendChild()`.
16494
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-append.md
16588
+ * Prefer `Element#append()` over `Node#appendChild()`.
16589
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-dom-node-append.md
16495
16590
  */
16496
16591
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
16497
16592
  /*
16498
- * Prefer using `.dataset` on DOM elements over calling attribute methods.
16499
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-dataset.md
16593
+ * Renamed to `unicorn/dom-node-dataset`.
16594
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#prefer-dom-node-dataset
16595
+ * @deprecated
16500
16596
  */
16501
16597
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
16502
16598
  /*
16503
16599
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
16504
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-remove.md
16600
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-dom-node-remove.md
16505
16601
  */
16506
16602
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
16507
16603
  /*
16508
16604
  * Prefer `.textContent` over `.innerText`.
16509
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-dom-node-text-content.md
16605
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-dom-node-text-content.md
16510
16606
  */
16511
16607
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
16512
16608
  /*
16513
16609
  * Prefer `EventTarget` over `EventEmitter`.
16514
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-event-target.md
16610
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-event-target.md
16515
16611
  */
16516
16612
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
16517
16613
  /*
16518
16614
  * Prefer `export…from` when re-exporting.
16519
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-export-from.md
16615
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-export-from.md
16520
16616
  */
16521
16617
  'unicorn/prefer-export-from'?: Linter.RuleEntry<PreferExportFrom>;
16618
+ /*
16619
+ * Prefer `.getOrInsertComputed()` when the default value has side effects.
16620
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-get-or-insert-computed.md
16621
+ */
16622
+ 'unicorn/prefer-get-or-insert-computed'?: Linter.RuleEntry<[]>;
16522
16623
  /*
16523
16624
  * Prefer `globalThis` over `window`, `self`, and `global`.
16524
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-global-this.md
16625
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-global-this.md
16525
16626
  */
16526
16627
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
16628
+ /*
16629
+ * Prefer HTTPS over HTTP.
16630
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-https.md
16631
+ */
16632
+ 'unicorn/prefer-https'?: Linter.RuleEntry<[]>;
16527
16633
  /*
16528
16634
  * Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
16529
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-import-meta-properties.md
16635
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-import-meta-properties.md
16530
16636
  */
16531
16637
  'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
16532
16638
  /*
16533
16639
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
16534
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-includes.md
16640
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-includes.md
16535
16641
  */
16536
16642
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
16537
16643
  /*
16538
- * Prefer reading a JSON file as a buffer.
16539
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-json-parse-buffer.md
16644
+ * Prefer `.includes()` over repeated equality comparisons.
16645
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-includes-over-repeated-comparisons.md
16646
+ */
16647
+ 'unicorn/prefer-includes-over-repeated-comparisons'?: Linter.RuleEntry<PreferIncludesOverRepeatedComparisons>;
16648
+ /*
16649
+ * Prefer `Iterator.concat(…)` over temporary spread arrays.
16650
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-iterator-concat.md
16651
+ */
16652
+ 'unicorn/prefer-iterator-concat'?: Linter.RuleEntry<[]>;
16653
+ /*
16654
+ * Prefer moving `.toArray()` to the end of iterator helper chains.
16655
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-iterator-to-array-at-end.md
16656
+ */
16657
+ 'unicorn/prefer-iterator-to-array-at-end'?: Linter.RuleEntry<[]>;
16658
+ /*
16659
+ * Renamed to `unicorn/consistent-json-file-read`.
16660
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/deleted-and-deprecated-rules.md#prefer-json-parse-buffer
16661
+ * @deprecated
16540
16662
  */
16541
16663
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
16542
16664
  /*
16543
- * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
16544
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-keyboard-event-key.md
16665
+ * Prefer `KeyboardEvent#key` over deprecated keyboard event properties.
16666
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-keyboard-event-key.md
16545
16667
  */
16546
16668
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
16547
16669
  /*
16548
16670
  * Prefer using a logical operator over a ternary.
16549
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-logical-operator-over-ternary.md
16671
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-logical-operator-over-ternary.md
16550
16672
  */
16551
16673
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
16674
+ /*
16675
+ * Prefer `Math.abs()` over manual absolute value expressions and symmetric range checks.
16676
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-math-abs.md
16677
+ */
16678
+ 'unicorn/prefer-math-abs'?: Linter.RuleEntry<[]>;
16552
16679
  /*
16553
16680
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
16554
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-math-min-max.md
16681
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-math-min-max.md
16555
16682
  */
16556
16683
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
16557
16684
  /*
16558
16685
  * Enforce the use of `Math.trunc` instead of bitwise operators.
16559
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-math-trunc.md
16686
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-math-trunc.md
16560
16687
  */
16561
16688
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
16562
16689
  /*
16563
16690
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
16564
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-modern-dom-apis.md
16691
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-modern-dom-apis.md
16565
16692
  */
16566
16693
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
16567
16694
  /*
16568
16695
  * Prefer modern `Math` APIs over legacy patterns.
16569
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-modern-math-apis.md
16696
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-modern-math-apis.md
16570
16697
  */
16571
16698
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
16572
16699
  /*
16573
16700
  * Prefer JavaScript modules (ESM) over CommonJS.
16574
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-module.md
16701
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-module.md
16575
16702
  */
16576
16703
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
16577
16704
  /*
16578
16705
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
16579
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-native-coercion-functions.md
16706
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-native-coercion-functions.md
16580
16707
  */
16581
16708
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
16582
16709
  /*
16583
16710
  * Prefer negative index over `.length - index` when possible.
16584
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-negative-index.md
16711
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-negative-index.md
16585
16712
  */
16586
16713
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
16587
16714
  /*
16588
16715
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
16589
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-node-protocol.md
16716
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-node-protocol.md
16590
16717
  */
16591
16718
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
16592
16719
  /*
16593
16720
  * Prefer `Number` static properties over global ones.
16594
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-number-properties.md
16721
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-number-properties.md
16595
16722
  */
16596
16723
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<PreferNumberProperties>;
16597
16724
  /*
16598
16725
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
16599
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-object-from-entries.md
16726
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-object-from-entries.md
16600
16727
  */
16601
16728
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<PreferObjectFromEntries>;
16602
16729
  /*
16603
16730
  * Prefer omitting the `catch` binding parameter.
16604
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-optional-catch-binding.md
16731
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-optional-catch-binding.md
16605
16732
  */
16606
16733
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
16607
16734
  /*
16608
16735
  * Prefer borrowing methods from the prototype instead of the instance.
16609
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-prototype-methods.md
16736
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-prototype-methods.md
16610
16737
  */
16611
16738
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
16612
16739
  /*
16613
- * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
16614
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-query-selector.md
16740
+ * Prefer `.querySelector()` and `.querySelectorAll()` over older DOM query methods.
16741
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-query-selector.md
16742
+ */
16743
+ 'unicorn/prefer-query-selector'?: Linter.RuleEntry<PreferQuerySelector>;
16744
+ /*
16745
+ * Prefer `queueMicrotask()` over `process.nextTick()`, `setImmediate()`, and `setTimeout(…, 0)`.
16746
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-queue-microtask.md
16615
16747
  */
16616
- 'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
16748
+ 'unicorn/prefer-queue-microtask'?: Linter.RuleEntry<PreferQueueMicrotask>;
16617
16749
  /*
16618
16750
  * Prefer `Reflect.apply()` over `Function#apply()`.
16619
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-reflect-apply.md
16751
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-reflect-apply.md
16620
16752
  */
16621
16753
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
16622
16754
  /*
16623
16755
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
16624
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-regexp-test.md
16756
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-regexp-test.md
16625
16757
  */
16626
16758
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
16627
16759
  /*
16628
16760
  * Prefer `Response.json()` over `new Response(JSON.stringify())`.
16629
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-response-static-json.md
16761
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-response-static-json.md
16630
16762
  */
16631
16763
  'unicorn/prefer-response-static-json'?: Linter.RuleEntry<[]>;
16632
16764
  /*
16633
16765
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
16634
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-set-has.md
16766
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-set-has.md
16635
16767
  */
16636
- 'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
16768
+ 'unicorn/prefer-set-has'?: Linter.RuleEntry<PreferSetHas>;
16637
16769
  /*
16638
16770
  * Prefer using `Set#size` instead of `Array#length`.
16639
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-set-size.md
16771
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-set-size.md
16640
16772
  */
16641
16773
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
16642
16774
  /*
16643
16775
  * Prefer simple conditions first in logical expressions.
16644
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-simple-condition-first.md
16776
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-simple-condition-first.md
16645
16777
  */
16646
16778
  'unicorn/prefer-simple-condition-first'?: Linter.RuleEntry<[]>;
16647
16779
  /*
16648
- * Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
16649
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-single-call.md
16780
+ * Enforce combining multiple `Array#{push,unshift}()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
16781
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-single-call.md
16650
16782
  */
16651
16783
  'unicorn/prefer-single-call'?: Linter.RuleEntry<PreferSingleCall>;
16784
+ /*
16785
+ * Prefer `String#split()` with a limit.
16786
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-split-limit.md
16787
+ */
16788
+ 'unicorn/prefer-split-limit'?: Linter.RuleEntry<[]>;
16652
16789
  /*
16653
16790
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
16654
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-spread.md
16791
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-spread.md
16655
16792
  */
16656
16793
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
16794
+ /*
16795
+ * Prefer `String#matchAll()` over `RegExp#exec()` loops.
16796
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-match-all.md
16797
+ */
16798
+ 'unicorn/prefer-string-match-all'?: Linter.RuleEntry<[]>;
16799
+ /*
16800
+ * Prefer `String#padStart()` and `String#padEnd()` over manual string padding.
16801
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-pad-start-end.md
16802
+ */
16803
+ 'unicorn/prefer-string-pad-start-end'?: Linter.RuleEntry<[]>;
16657
16804
  /*
16658
16805
  * Prefer using the `String.raw` tag to avoid escaping `\`.
16659
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-raw.md
16806
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-raw.md
16660
16807
  */
16661
16808
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
16662
16809
  /*
16663
- * Prefer `String#replaceAll()` over regex searches with the global flag.
16664
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-replace-all.md
16810
+ * Prefer `String#repeat()` for repeated whitespace.
16811
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-repeat.md
16812
+ */
16813
+ 'unicorn/prefer-string-repeat'?: Linter.RuleEntry<PreferStringRepeat>;
16814
+ /*
16815
+ * Prefer `String#replaceAll()` over regex searches with the global flag and `String#split().join()`.
16816
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-replace-all.md
16665
16817
  */
16666
16818
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
16667
16819
  /*
16668
16820
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
16669
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-slice.md
16821
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-slice.md
16670
16822
  */
16671
16823
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
16672
16824
  /*
16673
16825
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
16674
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-starts-ends-with.md
16826
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-starts-ends-with.md
16675
16827
  */
16676
16828
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
16677
16829
  /*
16678
16830
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
16679
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-string-trim-start-end.md
16831
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-string-trim-start-end.md
16680
16832
  */
16681
16833
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
16682
16834
  /*
16683
16835
  * Prefer using `structuredClone` to create a deep clone.
16684
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-structured-clone.md
16836
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-structured-clone.md
16685
16837
  */
16686
16838
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<PreferStructuredClone>;
16687
16839
  /*
16688
16840
  * Prefer `switch` over multiple `else-if`.
16689
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-switch.md
16841
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-switch.md
16690
16842
  */
16691
16843
  'unicorn/prefer-switch'?: Linter.RuleEntry<PreferSwitch>;
16692
16844
  /*
16693
16845
  * Prefer ternary expressions over simple `if-else` statements.
16694
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-ternary.md
16846
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-ternary.md
16695
16847
  */
16696
16848
  'unicorn/prefer-ternary'?: Linter.RuleEntry<PreferTernary>;
16697
16849
  /*
16698
16850
  * Prefer top-level await over top-level promises and async function calls.
16699
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-top-level-await.md
16851
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-top-level-await.md
16700
16852
  */
16701
16853
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
16702
16854
  /*
16703
16855
  * Enforce throwing `TypeError` in type checking conditions.
16704
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prefer-type-error.md
16856
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prefer-type-error.md
16705
16857
  */
16706
16858
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
16707
16859
  /*
16708
16860
  * Prevent abbreviations.
16709
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/prevent-abbreviations.md
16861
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/prevent-abbreviations.md
16710
16862
  */
16711
16863
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<PreventAbbreviations>;
16712
16864
  /*
16713
16865
  * Enforce consistent relative URL style.
16714
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/relative-url-style.md
16866
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/relative-url-style.md
16715
16867
  */
16716
16868
  'unicorn/relative-url-style'?: Linter.RuleEntry<RelativeUrlStyle>;
16717
16869
  /*
16718
16870
  * Enforce using the separator argument with `Array#join()`.
16719
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-array-join-separator.md
16871
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-array-join-separator.md
16720
16872
  */
16721
16873
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
16874
+ /*
16875
+ * Require `CSS.escape()` for interpolated values in CSS selectors.
16876
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-css-escape.md
16877
+ */
16878
+ 'unicorn/require-css-escape'?: Linter.RuleEntry<RequireCssEscape>;
16722
16879
  /*
16723
16880
  * Require non-empty module attributes for imports and exports
16724
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-module-attributes.md
16881
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-module-attributes.md
16725
16882
  */
16726
16883
  'unicorn/require-module-attributes'?: Linter.RuleEntry<[]>;
16727
16884
  /*
16728
16885
  * Require non-empty specifier list in import and export statements.
16729
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-module-specifiers.md
16886
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-module-specifiers.md
16730
16887
  */
16731
16888
  'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
16732
16889
  /*
16733
16890
  * Enforce using the digits argument with `Number#toFixed()`.
16734
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-number-to-fixed-digits-argument.md
16891
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-number-to-fixed-digits-argument.md
16735
16892
  */
16736
16893
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
16894
+ /*
16895
+ * Require passive event listeners for high-frequency events.
16896
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-passive-events.md
16897
+ */
16898
+ 'unicorn/require-passive-events'?: Linter.RuleEntry<[]>;
16737
16899
  /*
16738
16900
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
16739
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/require-post-message-target-origin.md
16901
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/require-post-message-target-origin.md
16740
16902
  */
16741
16903
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
16742
16904
  /*
16743
16905
  * Enforce better string content.
16744
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/string-content.md
16906
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/string-content.md
16745
16907
  */
16746
16908
  'unicorn/string-content'?: Linter.RuleEntry<StringContent>;
16747
16909
  /*
16748
16910
  * Enforce consistent brace style for `case` clauses.
16749
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/switch-case-braces.md
16911
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/switch-case-braces.md
16750
16912
  */
16751
16913
  'unicorn/switch-case-braces'?: Linter.RuleEntry<SwitchCaseBraces>;
16752
16914
  /*
16753
16915
  * Enforce consistent `break`/`return`/`continue`/`throw` position in `case` clauses.
16754
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/switch-case-break-position.md
16916
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/switch-case-break-position.md
16755
16917
  */
16756
16918
  'unicorn/switch-case-break-position'?: Linter.RuleEntry<[]>;
16757
16919
  /*
16758
16920
  * Fix whitespace-insensitive template indentation.
16759
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/template-indent.md
16921
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/template-indent.md
16760
16922
  */
16761
16923
  'unicorn/template-indent'?: Linter.RuleEntry<TemplateIndent>;
16762
16924
  /*
16763
16925
  * Enforce consistent case for text encoding identifiers.
16764
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/text-encoding-identifier-case.md
16926
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/text-encoding-identifier-case.md
16765
16927
  */
16766
16928
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<TextEncodingIdentifierCase>;
16767
16929
  /*
16768
16930
  * Require `new` when creating an error.
16769
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v64.0.0/docs/rules/throw-new-error.md
16931
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/throw-new-error.md
16770
16932
  */
16771
16933
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
16934
+ /*
16935
+ * Limit the complexity of `try` blocks.
16936
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v65.0.1/docs/rules/try-complexity.md
16937
+ */
16938
+ 'unicorn/try-complexity'?: Linter.RuleEntry<TryComplexity>;
16772
16939
  }
16773
- // ----- better-regex -----
16774
- type BetterRegex = [] | [{
16775
- sortCharacterClasses?: boolean;
16776
- }]; // ----- catch-error-name -----
16940
+ // ----- catch-error-name -----
16777
16941
  type CatchErrorName = [] | [{
16778
16942
  name?: string;
16779
16943
  ignore?: unknown[];
16780
- }]; // ----- consistent-function-scoping -----
16944
+ }]; // ----- consistent-compound-words -----
16945
+ type ConsistentCompoundWords = [] | [{
16946
+ checkProperties?: boolean;
16947
+ checkVariables?: boolean;
16948
+ checkDefaultAndNamespaceImports?: (boolean | "internal");
16949
+ checkShorthandImports?: (boolean | "internal");
16950
+ checkShorthandProperties?: boolean;
16951
+ extendDefaultReplacements?: boolean;
16952
+ replacements?: _ConsistentCompoundWords_Replacements;
16953
+ allowList?: _ConsistentCompoundWords_TrueObject;
16954
+ }];
16955
+ interface _ConsistentCompoundWords_Replacements {
16956
+ [k: string]: (false | string) | undefined;
16957
+ }
16958
+ interface _ConsistentCompoundWords_TrueObject {
16959
+ [k: string]: true | undefined;
16960
+ } // ----- consistent-function-scoping -----
16781
16961
  type ConsistentFunctionScoping = [] | [{
16782
16962
  checkArrowFunctions?: boolean;
16963
+ }]; // ----- consistent-json-file-read -----
16964
+ type ConsistentJsonFileRead = [] | [("string" | "buffer")]; // ----- dom-node-dataset -----
16965
+ type DomNodeDataset = [] | [{
16966
+ preferAttributes?: boolean;
16783
16967
  }]; // ----- escape-case -----
16784
16968
  type EscapeCase = [] | [("uppercase" | "lowercase")]; // ----- expiring-todo-comments -----
16785
16969
  type ExpiringTodoComments = [] | [{
16786
16970
  terms?: string[];
16787
16971
  ignore?: unknown[];
16788
- ignoreDates?: boolean;
16789
- ignoreDatesOnPullRequests?: boolean;
16972
+ checkDates?: boolean;
16973
+ checkDatesOnPullRequests?: boolean;
16790
16974
  allowWarningComments?: boolean;
16791
16975
  date?: string;
16792
16976
  }]; // ----- explicit-length-check -----
@@ -16797,6 +16981,7 @@ type FilenameCase = [] | [({
16797
16981
  case?: ("camelCase" | "snakeCase" | "kebabCase" | "pascalCase");
16798
16982
  ignore?: unknown[];
16799
16983
  multipleFileExtensions?: boolean;
16984
+ checkDirectories?: boolean;
16800
16985
  } | {
16801
16986
  cases?: {
16802
16987
  camelCase?: boolean;
@@ -16806,6 +16991,7 @@ type FilenameCase = [] | [({
16806
16991
  };
16807
16992
  ignore?: unknown[];
16808
16993
  multipleFileExtensions?: boolean;
16994
+ checkDirectories?: boolean;
16809
16995
  })]; // ----- import-style -----
16810
16996
  type ImportStyle = [] | [{
16811
16997
  checkImport?: boolean;
@@ -16829,6 +17015,9 @@ type IsolatedFunctions = [] | [{
16829
17015
  functions?: string[];
16830
17016
  selectors?: string[];
16831
17017
  comments?: string[];
17018
+ }]; // ----- no-array-callback-reference -----
17019
+ type NoArrayCallbackReference = [] | [{
17020
+ ignore?: string[];
16832
17021
  }]; // ----- no-array-reduce -----
16833
17022
  type NoArrayReduce = [] | [{
16834
17023
  allowSimpleOperations?: boolean;
@@ -16838,6 +17027,9 @@ type NoArrayReverse = [] | [{
16838
17027
  }]; // ----- no-array-sort -----
16839
17028
  type NoArraySort = [] | [{
16840
17029
  allowExpressionStatement?: boolean;
17030
+ }]; // ----- no-empty-file -----
17031
+ type NoEmptyFile = [] | [{
17032
+ allowComments?: boolean;
16841
17033
  }]; // ----- no-instanceof-builtins -----
16842
17034
  type NoInstanceofBuiltins = [] | [{
16843
17035
  useErrorIsError?: boolean;
@@ -16851,13 +17043,14 @@ type NoKeywordPrefix = [] | [{
16851
17043
  onlyCamelCase?: boolean;
16852
17044
  }]; // ----- no-null -----
16853
17045
  type NoNull = [] | [{
17046
+ checkArguments?: boolean;
16854
17047
  checkStrictEquality?: boolean;
16855
17048
  }]; // ----- no-typeof-undefined -----
16856
17049
  type NoTypeofUndefined = [] | [{
16857
17050
  checkGlobalVariables?: boolean;
16858
17051
  }]; // ----- no-unnecessary-polyfills -----
16859
17052
  type NoUnnecessaryPolyfills = [] | [{
16860
- targets: (string | unknown[] | {
17053
+ targets?: (string | unknown[] | {
16861
17054
  [k: string]: unknown | undefined;
16862
17055
  });
16863
17056
  }]; // ----- no-useless-undefined -----
@@ -16888,6 +17081,7 @@ type NumericSeparatorsStyle = [] | [{
16888
17081
  onlyIfContainsSeparator?: boolean;
16889
17082
  minimumDigits?: number;
16890
17083
  groupLength?: number;
17084
+ fractionGroupLength?: number;
16891
17085
  };
16892
17086
  onlyIfContainsSeparator?: boolean;
16893
17087
  }]; // ----- prefer-add-event-listener -----
@@ -16905,7 +17099,10 @@ type PreferAt = [] | [{
16905
17099
  checkAllIndexAccess?: boolean;
16906
17100
  }]; // ----- prefer-export-from -----
16907
17101
  type PreferExportFrom = [] | [{
16908
- ignoreUsedVariables?: boolean;
17102
+ checkUsedVariables?: boolean;
17103
+ }]; // ----- prefer-includes-over-repeated-comparisons -----
17104
+ type PreferIncludesOverRepeatedComparisons = [] | [{
17105
+ minimumComparisons?: number;
16909
17106
  }]; // ----- prefer-number-properties -----
16910
17107
  type PreferNumberProperties = [] | [{
16911
17108
  checkInfinity?: boolean;
@@ -16913,9 +17110,22 @@ type PreferNumberProperties = [] | [{
16913
17110
  }]; // ----- prefer-object-from-entries -----
16914
17111
  type PreferObjectFromEntries = [] | [{
16915
17112
  functions?: unknown[];
17113
+ }]; // ----- prefer-query-selector -----
17114
+ type PreferQuerySelector = [] | [{
17115
+ allowWithVariables?: boolean;
17116
+ }]; // ----- prefer-queue-microtask -----
17117
+ type PreferQueueMicrotask = [] | [{
17118
+ checkSetImmediate?: boolean;
17119
+ checkSetTimeout?: boolean;
17120
+ }]; // ----- prefer-set-has -----
17121
+ type PreferSetHas = [] | [{
17122
+ minimumItems?: number;
16916
17123
  }]; // ----- prefer-single-call -----
16917
17124
  type PreferSingleCall = [] | [{
16918
17125
  ignore?: unknown[];
17126
+ }]; // ----- prefer-string-repeat -----
17127
+ type PreferStringRepeat = [] | [{
17128
+ minimumRepetitions?: number;
16919
17129
  }]; // ----- prefer-structured-clone -----
16920
17130
  type PreferStructuredClone = [] | [{
16921
17131
  functions?: unknown[];
@@ -16948,15 +17158,20 @@ interface _PreventAbbreviations_BooleanObject {
16948
17158
  interface _PreventAbbreviations_BooleanObject {
16949
17159
  [k: string]: boolean | undefined;
16950
17160
  } // ----- relative-url-style -----
16951
- type RelativeUrlStyle = [] | [("never" | "always")]; // ----- string-content -----
17161
+ type RelativeUrlStyle = [] | [("never" | "always")]; // ----- require-css-escape -----
17162
+ type RequireCssEscape = [] | [{
17163
+ checkAllSelectors?: boolean;
17164
+ }]; // ----- string-content -----
16952
17165
  type StringContent = [] | [{
16953
17166
  patterns?: {
16954
17167
  [k: string]: (string | {
16955
17168
  suggest: string;
16956
17169
  fix?: boolean;
17170
+ caseSensitive?: boolean;
16957
17171
  message?: string;
16958
17172
  }) | undefined;
16959
17173
  };
17174
+ selectors?: string[];
16960
17175
  }]; // ----- switch-case-braces -----
16961
17176
  type SwitchCaseBraces = [] | [("always" | "avoid")]; // ----- template-indent -----
16962
17177
  type TemplateIndent = [] | [{
@@ -16968,6 +17183,9 @@ type TemplateIndent = [] | [{
16968
17183
  }]; // ----- text-encoding-identifier-case -----
16969
17184
  type TextEncodingIdentifierCase = [] | [{
16970
17185
  withDash?: boolean;
17186
+ }]; // ----- try-complexity -----
17187
+ type TryComplexity = [] | [{
17188
+ max?: number;
16971
17189
  }];
16972
17190
  //#endregion
16973
17191
  //#region src/typegen/unused-imports-rules.d.ts
@@ -17261,7 +17479,7 @@ interface VitestRuleOptions {
17261
17479
  */
17262
17480
  'vitest/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
17263
17481
  /*
17264
- * enforce using `expectTypeOf` instead of `expect(typeof ...)`
17482
+ * enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof ...).toBe(...)`
17265
17483
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
17266
17484
  */
17267
17485
  'vitest/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
@@ -17861,7 +18079,7 @@ type SpacedComment = [] | [("always" | "never")] | [("always" | "never"), {
17861
18079
  }];
17862
18080
  //#endregion
17863
18081
  //#region src/typegen/index.d.ts
17864
- type RuleOptions = AngularEslintRuleOptions | AngularEslintTemplateRuleOptions | BetterTailwindcssRuleOptions | DefaultRuleOptions | EslintCommunityEslintCommentsRuleOptions | ImportXRuleOptions | JestDomRuleOptions | JsdocRuleOptions | JsoncRuleOptions | MarkdownRuleOptions | NgrxRuleOptions | NRuleOptions | PerfectionistRuleOptions | PnpmRuleOptions | PreferArrowFunctionsRuleOptions | RegexpRuleOptions | StylisticRuleOptions | TomlRuleOptions | TypescriptEslintRuleOptions | UnicornRuleOptions | UnusedImportsRuleOptions | VitestRuleOptions | YamlRuleOptions | TestingLibraryRuleOptions;
18082
+ type RuleOptions = AngularEslintRuleOptions | AngularEslintTemplateRuleOptions | BetterTailwindcssRuleOptions | DefaultRuleOptions | EslintCommunityEslintCommentsRuleOptions | ImportXRuleOptions | JestDomYaRuleOptions | JsdocRuleOptions | JsoncRuleOptions | MarkdownRuleOptions | NgrxRuleOptions | NRuleOptions | PerfectionistRuleOptions | PnpmRuleOptions | PreferArrowFunctionsRuleOptions | RegexpRuleOptions | StylisticRuleOptions | TomlRuleOptions | TypescriptEslintRuleOptions | UnicornRuleOptions | UnusedImportsRuleOptions | VitestRuleOptions | YamlRuleOptions | TestingLibraryRuleOptions;
17865
18083
  type ConfigNames = 'antfu/pnpm/pnpm-workspace-yaml-sort' | 'fabdeh/angular-template/rules' | 'fabdeh/angular/rules' | 'fabdeh/app/typescript/rules' | 'fabdeh/app/typescript/setup' | 'fabdeh/comments/rules' | 'fabdeh/ignores' | 'fabdeh/imports/rules' | 'fabdeh/imports/ts-disables' | 'fabdeh/javascript/rules' | 'fabdeh/javascript/setup' | 'fabdeh/jsdoc/rules' | 'fabdeh/jsdoc/ts-only/rules' | 'fabdeh/jsonc/rules' | 'fabdeh/jsonc/setup' | 'fabdeh/markdown/disables' | 'fabdeh/markdown/parser' | 'fabdeh/markdown/processor' | 'fabdeh/markdown/rules' | 'fabdeh/markdown/setup' | 'fabdeh/ngrx-effects/rules' | 'fabdeh/ngrx-operators/rules' | 'fabdeh/ngrx-signals/rules' | 'fabdeh/ngrx-store/rules' | 'fabdeh/ngrx/setup' | 'fabdeh/node/rules' | 'fabdeh/perfectionist/rules' | 'fabdeh/pnpm/package-json' | 'fabdeh/pnpm/pnpm-workspace-yaml' | 'fabdeh/regexp/rules' | 'fabdeh/sort/package-json' | 'fabdeh/sort/tsconfig-json' | 'fabdeh/stylistic/rules' | 'fabdeh/tailwindcss/rules' | 'fabdeh/toml/rules' | 'fabdeh/toml/setup' | 'fabdeh/unicorn/rules' | 'fabdeh/vitest/rules' | 'fabdeh/yaml/rules' | 'fabdeh/yaml/setup';
17866
18084
  //#endregion
17867
18085
  //#region src/shared/constants.d.ts
@@ -18044,12 +18262,6 @@ interface AngularOptions {
18044
18262
  */
18045
18263
  componentStylesMode?: "array" | "string";
18046
18264
  /**
18047
- * Indicates whether all component should use `OnPush` change strategy or not.
18048
- *
18049
- * @default true
18050
- */
18051
- preferOnPushOnly?: boolean;
18052
- /**
18053
18265
  * Disallow using code which is marked as experimental.
18054
18266
  *
18055
18267
  * @default true
@@ -18923,4 +19135,4 @@ declare function pathToGlobPattern(options?: PathToGlobPatternOptions): (path: s
18923
19135
  */
18924
19136
  declare function getPlaywrightDirectory(): string | undefined;
18925
19137
  //#endregion
18926
- export { AngularOptions, ArrayItemType, Awaitable, CONFIG_PRESET_FULL_OFF, CONFIG_PRESET_FULL_ON, type ConfigNames, DefineConfigOptions, DefinePlaywrightConfigOptions, DefineProjectConfigOptions, DefineWorkspaceConfigOptions, ExtractRuleOptionsType, FilesOptions, FlatConfigComposerWithOptions, GLOB_HTML, GLOB_JS, GLOB_SRC, GLOB_TESTS, GLOB_TS, IgnoresOptions, InfiniteDepthConfigWithExtends, IsInEditorOptions, NamingConventionOptions, NgrxOperatorsOptions, NgrxOptions, OverridesOptions, PathToGlobPatternOptions, PlaywrightOptions, PnpmOptions, ProjectType, ProjectTypeOptions, ProjectTypeScriptOptions, RegExpOptions, ResolvedOptions, Rules, STYLISTIC_CONFIG_DEFAULT, StylisticConfig, StylisticOptions, TailwindCssOptions, TypeScriptOptions, TypedConfig, TypedConfigWithExtends, UnicornOptions, UnitTestingOptions, WorkspaceProjectType, angular, comments, convertPathToPosix, defineConfig, defineProjectConfig, defineWorkspaceConfig, ensurePackages, getPlaywrightDirectory, getTsConfigFileName, getWorkspaceRoot, ignores, imports, interopDefault, isDirectory, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsdoc, jsonc, markdown, ngrx, node, pathToGlobPattern, perfectionist, playwright, pnpm, regexp, resolveSubOptions, sortPackageJson, sortTsConfig, stylistic, tailwindcss, toml, typescript, unicorn, vitest, yaml };
19138
+ export { type AngularOptions, type ArrayItemType, type Awaitable, CONFIG_PRESET_FULL_OFF, CONFIG_PRESET_FULL_ON, type ConfigNames, type DefineConfigOptions, type DefinePlaywrightConfigOptions, type DefineProjectConfigOptions, type DefineWorkspaceConfigOptions, type ExtractRuleOptionsType, type FilesOptions, type FlatConfigComposerWithOptions, GLOB_HTML, GLOB_JS, GLOB_SRC, GLOB_TESTS, GLOB_TS, type IgnoresOptions, type InfiniteDepthConfigWithExtends, type IsInEditorOptions, type NamingConventionOptions, type NgrxOperatorsOptions, type NgrxOptions, type OverridesOptions, PathToGlobPatternOptions, type PlaywrightOptions, type PnpmOptions, type ProjectType, type ProjectTypeOptions, type ProjectTypeScriptOptions, type RegExpOptions, ResolvedOptions, type Rules, STYLISTIC_CONFIG_DEFAULT, type StylisticConfig, type StylisticOptions, type TailwindCssOptions, type TypeScriptOptions, type TypedConfig, type TypedConfigWithExtends, type UnicornOptions, type UnitTestingOptions, type WorkspaceProjectType, angular, comments, convertPathToPosix, defineConfig, defineProjectConfig, defineWorkspaceConfig, ensurePackages, getPlaywrightDirectory, getTsConfigFileName, getWorkspaceRoot, ignores, imports, interopDefault, isDirectory, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsdoc, jsonc, markdown, ngrx, node, pathToGlobPattern, perfectionist, playwright, pnpm, regexp, resolveSubOptions, sortPackageJson, sortTsConfig, stylistic, tailwindcss, toml, typescript, unicorn, vitest, yaml };