@jimmy.codes/eslint-config 5.8.0 → 5.10.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.ts CHANGED
@@ -11,10 +11,37 @@ import * as _eslint_react_kit from '@eslint-react/kit';
11
11
  import * as _stylistic_eslint_plugin from '@stylistic/eslint-plugin';
12
12
  import * as eslint_plugin_regexp from 'eslint-plugin-regexp';
13
13
  import * as eslint_plugin_n from 'eslint-plugin-n';
14
- import * as eslint_plugin_import_x_node_resolver_js from 'eslint-plugin-import-x/node-resolver.js';
15
- import * as eslint_plugin_import_x_utils_resolve_js from 'eslint-plugin-import-x/utils/resolve.js';
16
- import * as eslint_plugin_import_x_utils_module_visitor_js from 'eslint-plugin-import-x/utils/module-visitor.js';
17
- import * as eslint_plugin_import_x_types_js from 'eslint-plugin-import-x/types.js';
14
+ import * as eslint_plugin_import_x from 'eslint-plugin-import-x';
15
+ import * as eslint_plugin_import_x_rules_no_import_module_exports from 'eslint-plugin-import-x/rules/no-import-module-exports';
16
+ import * as eslint_plugin_import_x_rules_dynamic_import_chunkname from 'eslint-plugin-import-x/rules/dynamic-import-chunkname';
17
+ import * as eslint_plugin_import_x_rules_no_useless_path_segments from 'eslint-plugin-import-x/rules/no-useless-path-segments';
18
+ import * as eslint_plugin_import_x_rules_no_unassigned_import from 'eslint-plugin-import-x/rules/no-unassigned-import';
19
+ import * as eslint_plugin_import_x_rules_no_dynamic_require from 'eslint-plugin-import-x/rules/no-dynamic-require';
20
+ import * as eslint_plugin_import_x_rules_prefer_default_export from 'eslint-plugin-import-x/rules/prefer-default-export';
21
+ import * as eslint_plugin_import_x_rules_newline_after_import from 'eslint-plugin-import-x/rules/newline-after-import';
22
+ import * as eslint_plugin_import_x_rules_order from 'eslint-plugin-import-x/rules/order';
23
+ import * as eslint_plugin_import_x_rules_no_nodejs_modules from 'eslint-plugin-import-x/rules/no-nodejs-modules';
24
+ import * as eslint_plugin_import_x_rules_no_extraneous_dependencies from 'eslint-plugin-import-x/rules/no-extraneous-dependencies';
25
+ import * as eslint_plugin_import_x_rules_max_dependencies from 'eslint-plugin-import-x/rules/max-dependencies';
26
+ import * as eslint_plugin_import_x_rules_first from 'eslint-plugin-import-x/rules/first';
27
+ import * as eslint_plugin_import_x_rules_no_duplicates from 'eslint-plugin-import-x/rules/no-duplicates';
28
+ import * as eslint_plugin_import_x_rules_no_commonjs from 'eslint-plugin-import-x/rules/no-commonjs';
29
+ import * as eslint_plugin_import_x_rules_no_unused_modules from 'eslint-plugin-import-x/rules/no-unused-modules';
30
+ import * as eslint_plugin_import_x_rules_no_rename_default from 'eslint-plugin-import-x/rules/no-rename-default';
31
+ import * as eslint_plugin_import_x_rules_no_anonymous_default_export from 'eslint-plugin-import-x/rules/no-anonymous-default-export';
32
+ import * as eslint_plugin_import_x_rules_no_cycle from 'eslint-plugin-import-x/rules/no-cycle';
33
+ import * as eslint_plugin_import_x_rules_consistent_type_specifier_style from 'eslint-plugin-import-x/rules/consistent-type-specifier-style';
34
+ import * as eslint_plugin_import_x_rules_group_exports from 'eslint-plugin-import-x/rules/group-exports';
35
+ import * as eslint_plugin_import_x_rules_no_internal_modules from 'eslint-plugin-import-x/rules/no-internal-modules';
36
+ import * as eslint_plugin_import_x_rules_no_restricted_paths from 'eslint-plugin-import-x/rules/no-restricted-paths';
37
+ import * as eslint_plugin_import_x_rules_extensions from 'eslint-plugin-import-x/rules/extensions';
38
+ import * as eslint_plugin_import_x_rules_export from 'eslint-plugin-import-x/rules/export';
39
+ import * as eslint_plugin_import_x_rules_no_namespace from 'eslint-plugin-import-x/rules/no-namespace';
40
+ import * as eslint_plugin_import_x_rules_namespace from 'eslint-plugin-import-x/rules/namespace';
41
+ import * as eslint_plugin_import_x_rules_named from 'eslint-plugin-import-x/rules/named';
42
+ import * as eslint_plugin_import_x_utils from 'eslint-plugin-import-x/utils';
43
+ import * as eslint_plugin_import_x_rules_no_unresolved from 'eslint-plugin-import-x/rules/no-unresolved';
44
+ import * as eslint_plugin_import_x_types from 'eslint-plugin-import-x/types';
18
45
 
19
46
  declare function nextjsConfig(): Promise<{
20
47
  files: string[];
@@ -48,6 +75,7 @@ declare function storybookConfig(): Promise<({
48
75
  name: string;
49
76
  rules: {
50
77
  "import-x/no-anonymous-default-export": "off";
78
+ "storybook/meta-satisfies-type": "error";
51
79
  "unicorn/no-anonymous-default-export": "off";
52
80
  };
53
81
  plugins?: undefined;
@@ -81,6 +109,11 @@ declare function playwrightConfig(): Promise<{
81
109
  "playwright/no-useless-not": "error";
82
110
  "playwright/no-wait-for-selector": "error";
83
111
  "playwright/no-wait-for-timeout": "error";
112
+ "playwright/valid-title": ["error", {
113
+ mustMatch: {
114
+ it: string;
115
+ };
116
+ }];
84
117
  };
85
118
  ignores?: string[];
86
119
  language?: string;
@@ -209,7 +242,11 @@ declare function vitestConfig(): Promise<{
209
242
  "vitest/require-top-level-describe": "off";
210
243
  "vitest/valid-expect": "error";
211
244
  "vitest/valid-expect-in-promise": "error";
212
- "vitest/valid-title": "error";
245
+ "vitest/valid-title": ["error", {
246
+ mustMatch: {
247
+ it: string;
248
+ };
249
+ }];
213
250
  "vitest/expect-expect": "error";
214
251
  "vitest/valid-describe-callback": "error";
215
252
  "vitest/require-local-test-context-for-concurrent-snapshots": "error";
@@ -263,6 +300,11 @@ declare function jestConfig(): Promise<{
263
300
  "jest/require-to-throw-message": "error";
264
301
  "jest/require-top-level-describe": "off";
265
302
  "jest/unbound-method": "off";
303
+ "jest/valid-title": ["error", {
304
+ mustMatch: {
305
+ it: string;
306
+ };
307
+ }];
266
308
  };
267
309
  files: Array<string | string[]>;
268
310
  ignores: string[];
@@ -4660,233 +4702,233 @@ interface RuleOptions {
4660
4702
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
4661
4703
  /**
4662
4704
  * Enforce or ban the use of inline type-only markers for named imports.
4663
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/consistent-type-specifier-style.md
4705
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/consistent-type-specifier-style.md
4664
4706
  */
4665
4707
  'import-x/consistent-type-specifier-style'?: Linter.RuleEntry<ImportXConsistentTypeSpecifierStyle>
4666
4708
  /**
4667
4709
  * Ensure a default export is present, given a default import.
4668
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/default.md
4710
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/default.md
4669
4711
  */
4670
4712
  'import-x/default'?: Linter.RuleEntry<[]>
4671
4713
  /**
4672
4714
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
4673
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/dynamic-import-chunkname.md
4715
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/dynamic-import-chunkname.md
4674
4716
  */
4675
4717
  'import-x/dynamic-import-chunkname'?: Linter.RuleEntry<ImportXDynamicImportChunkname>
4676
4718
  /**
4677
4719
  * Forbid any invalid exports, i.e. re-export of the same name.
4678
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/export.md
4720
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/export.md
4679
4721
  */
4680
4722
  'import-x/export'?: Linter.RuleEntry<[]>
4681
4723
  /**
4682
4724
  * Ensure all exports appear after other statements.
4683
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/exports-last.md
4725
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/exports-last.md
4684
4726
  */
4685
4727
  'import-x/exports-last'?: Linter.RuleEntry<[]>
4686
4728
  /**
4687
4729
  * Ensure consistent use of file extension within the import path.
4688
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/extensions.md
4730
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/extensions.md
4689
4731
  */
4690
4732
  'import-x/extensions'?: Linter.RuleEntry<ImportXExtensions>
4691
4733
  /**
4692
4734
  * Ensure all imports appear before other statements.
4693
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/first.md
4735
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/first.md
4694
4736
  */
4695
4737
  'import-x/first'?: Linter.RuleEntry<ImportXFirst>
4696
4738
  /**
4697
4739
  * Prefer named exports to be grouped together in a single export declaration.
4698
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/group-exports.md
4740
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/group-exports.md
4699
4741
  */
4700
4742
  'import-x/group-exports'?: Linter.RuleEntry<[]>
4701
4743
  /**
4702
4744
  * Replaced by `import-x/first`.
4703
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/imports-first.md
4745
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/imports-first.md
4704
4746
  * @deprecated
4705
4747
  */
4706
4748
  'import-x/imports-first'?: Linter.RuleEntry<ImportXImportsFirst>
4707
4749
  /**
4708
4750
  * Enforce the maximum number of dependencies a module can have.
4709
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/max-dependencies.md
4751
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/max-dependencies.md
4710
4752
  */
4711
4753
  'import-x/max-dependencies'?: Linter.RuleEntry<ImportXMaxDependencies>
4712
4754
  /**
4713
4755
  * Ensure named imports correspond to a named export in the remote file.
4714
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/named.md
4756
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/named.md
4715
4757
  */
4716
4758
  'import-x/named'?: Linter.RuleEntry<ImportXNamed>
4717
4759
  /**
4718
4760
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
4719
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/namespace.md
4761
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/namespace.md
4720
4762
  */
4721
4763
  'import-x/namespace'?: Linter.RuleEntry<ImportXNamespace>
4722
4764
  /**
4723
4765
  * Enforce a newline after import statements.
4724
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/newline-after-import.md
4766
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/newline-after-import.md
4725
4767
  */
4726
4768
  'import-x/newline-after-import'?: Linter.RuleEntry<ImportXNewlineAfterImport>
4727
4769
  /**
4728
4770
  * Forbid import of modules using absolute paths.
4729
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-absolute-path.md
4771
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-absolute-path.md
4730
4772
  */
4731
4773
  'import-x/no-absolute-path'?: Linter.RuleEntry<ImportXNoAbsolutePath>
4732
4774
  /**
4733
4775
  * Forbid AMD `require` and `define` calls.
4734
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-amd.md
4776
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-amd.md
4735
4777
  */
4736
4778
  'import-x/no-amd'?: Linter.RuleEntry<[]>
4737
4779
  /**
4738
4780
  * Forbid anonymous values as default exports.
4739
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-anonymous-default-export.md
4781
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-anonymous-default-export.md
4740
4782
  */
4741
4783
  'import-x/no-anonymous-default-export'?: Linter.RuleEntry<ImportXNoAnonymousDefaultExport>
4742
4784
  /**
4743
4785
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
4744
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-commonjs.md
4786
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-commonjs.md
4745
4787
  */
4746
4788
  'import-x/no-commonjs'?: Linter.RuleEntry<ImportXNoCommonjs>
4747
4789
  /**
4748
4790
  * Forbid a module from importing a module with a dependency path back to itself.
4749
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-cycle.md
4791
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-cycle.md
4750
4792
  */
4751
4793
  'import-x/no-cycle'?: Linter.RuleEntry<ImportXNoCycle>
4752
4794
  /**
4753
4795
  * Forbid default exports.
4754
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-default-export.md
4796
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-default-export.md
4755
4797
  */
4756
4798
  'import-x/no-default-export'?: Linter.RuleEntry<[]>
4757
4799
  /**
4758
4800
  * Forbid imported names marked with `@deprecated` documentation tag.
4759
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-deprecated.md
4801
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-deprecated.md
4760
4802
  */
4761
4803
  'import-x/no-deprecated'?: Linter.RuleEntry<[]>
4762
4804
  /**
4763
4805
  * Forbid repeated import of the same module in multiple places.
4764
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-duplicates.md
4806
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-duplicates.md
4765
4807
  */
4766
4808
  'import-x/no-duplicates'?: Linter.RuleEntry<ImportXNoDuplicates>
4767
4809
  /**
4768
4810
  * Forbid `require()` calls with expressions.
4769
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-dynamic-require.md
4811
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-dynamic-require.md
4770
4812
  */
4771
4813
  'import-x/no-dynamic-require'?: Linter.RuleEntry<ImportXNoDynamicRequire>
4772
4814
  /**
4773
4815
  * Forbid empty named import blocks.
4774
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-empty-named-blocks.md
4816
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-empty-named-blocks.md
4775
4817
  */
4776
4818
  'import-x/no-empty-named-blocks'?: Linter.RuleEntry<[]>
4777
4819
  /**
4778
4820
  * Forbid the use of extraneous packages.
4779
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-extraneous-dependencies.md
4821
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-extraneous-dependencies.md
4780
4822
  */
4781
4823
  'import-x/no-extraneous-dependencies'?: Linter.RuleEntry<ImportXNoExtraneousDependencies>
4782
4824
  /**
4783
4825
  * Forbid import statements with CommonJS module.exports.
4784
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-import-module-exports.md
4826
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-import-module-exports.md
4785
4827
  */
4786
4828
  'import-x/no-import-module-exports'?: Linter.RuleEntry<ImportXNoImportModuleExports>
4787
4829
  /**
4788
4830
  * Forbid importing the submodules of other modules.
4789
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-internal-modules.md
4831
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-internal-modules.md
4790
4832
  */
4791
4833
  'import-x/no-internal-modules'?: Linter.RuleEntry<ImportXNoInternalModules>
4792
4834
  /**
4793
4835
  * Forbid the use of mutable exports with `var` or `let`.
4794
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-mutable-exports.md
4836
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-mutable-exports.md
4795
4837
  */
4796
4838
  'import-x/no-mutable-exports'?: Linter.RuleEntry<[]>
4797
4839
  /**
4798
4840
  * Forbid use of exported name as identifier of default export.
4799
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-named-as-default.md
4841
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-named-as-default.md
4800
4842
  */
4801
4843
  'import-x/no-named-as-default'?: Linter.RuleEntry<[]>
4802
4844
  /**
4803
4845
  * Forbid use of exported name as property of default export.
4804
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-named-as-default-member.md
4846
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-named-as-default-member.md
4805
4847
  */
4806
4848
  'import-x/no-named-as-default-member'?: Linter.RuleEntry<[]>
4807
4849
  /**
4808
4850
  * Forbid named default exports.
4809
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-named-default.md
4851
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-named-default.md
4810
4852
  */
4811
4853
  'import-x/no-named-default'?: Linter.RuleEntry<[]>
4812
4854
  /**
4813
4855
  * Forbid named exports.
4814
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-named-export.md
4856
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-named-export.md
4815
4857
  */
4816
4858
  'import-x/no-named-export'?: Linter.RuleEntry<[]>
4817
4859
  /**
4818
4860
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
4819
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-namespace.md
4861
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-namespace.md
4820
4862
  */
4821
4863
  'import-x/no-namespace'?: Linter.RuleEntry<ImportXNoNamespace>
4822
4864
  /**
4823
4865
  * Forbid Node.js builtin modules.
4824
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-nodejs-modules.md
4866
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-nodejs-modules.md
4825
4867
  */
4826
4868
  'import-x/no-nodejs-modules'?: Linter.RuleEntry<ImportXNoNodejsModules>
4827
4869
  /**
4828
4870
  * Forbid importing packages through relative paths.
4829
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-relative-packages.md
4871
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-relative-packages.md
4830
4872
  */
4831
4873
  'import-x/no-relative-packages'?: Linter.RuleEntry<ImportXNoRelativePackages>
4832
4874
  /**
4833
4875
  * Forbid importing modules from parent directories.
4834
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-relative-parent-imports.md
4876
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-relative-parent-imports.md
4835
4877
  */
4836
4878
  'import-x/no-relative-parent-imports'?: Linter.RuleEntry<ImportXNoRelativeParentImports>
4837
4879
  /**
4838
4880
  * Forbid importing a default export by a different name.
4839
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-rename-default.md
4881
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-rename-default.md
4840
4882
  */
4841
4883
  'import-x/no-rename-default'?: Linter.RuleEntry<ImportXNoRenameDefault>
4842
4884
  /**
4843
4885
  * Enforce which files can be imported in a given folder.
4844
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-restricted-paths.md
4886
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-restricted-paths.md
4845
4887
  */
4846
4888
  'import-x/no-restricted-paths'?: Linter.RuleEntry<ImportXNoRestrictedPaths>
4847
4889
  /**
4848
4890
  * Forbid a module from importing itself.
4849
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-self-import.md
4891
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-self-import.md
4850
4892
  */
4851
4893
  'import-x/no-self-import'?: Linter.RuleEntry<[]>
4852
4894
  /**
4853
4895
  * Forbid unassigned imports.
4854
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-unassigned-import.md
4896
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-unassigned-import.md
4855
4897
  */
4856
4898
  'import-x/no-unassigned-import'?: Linter.RuleEntry<ImportXNoUnassignedImport>
4857
4899
  /**
4858
4900
  * Ensure imports point to a file/module that can be resolved.
4859
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-unresolved.md
4901
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-unresolved.md
4860
4902
  */
4861
4903
  'import-x/no-unresolved'?: Linter.RuleEntry<ImportXNoUnresolved>
4862
4904
  /**
4863
4905
  * Forbid modules without exports, or exports without matching import in another module.
4864
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-unused-modules.md
4906
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-unused-modules.md
4865
4907
  */
4866
4908
  'import-x/no-unused-modules'?: Linter.RuleEntry<ImportXNoUnusedModules>
4867
4909
  /**
4868
4910
  * Forbid unnecessary path segments in import and require statements.
4869
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-useless-path-segments.md
4911
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-useless-path-segments.md
4870
4912
  */
4871
4913
  'import-x/no-useless-path-segments'?: Linter.RuleEntry<ImportXNoUselessPathSegments>
4872
4914
  /**
4873
4915
  * Forbid webpack loader syntax in imports.
4874
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/no-webpack-loader-syntax.md
4916
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/no-webpack-loader-syntax.md
4875
4917
  */
4876
4918
  'import-x/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
4877
4919
  /**
4878
4920
  * Enforce a convention in module import order.
4879
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/order.md
4921
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/order.md
4880
4922
  */
4881
4923
  'import-x/order'?: Linter.RuleEntry<ImportXOrder>
4882
4924
  /**
4883
4925
  * Prefer a default export if module exports a single name or multiple names.
4884
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/prefer-default-export.md
4926
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/prefer-default-export.md
4885
4927
  */
4886
4928
  'import-x/prefer-default-export'?: Linter.RuleEntry<ImportXPreferDefaultExport>
4887
4929
  /**
4888
4930
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
4889
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.9.1/docs/rules/unambiguous.md
4931
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.0/docs/rules/unambiguous.md
4890
4932
  */
4891
4933
  'import-x/unambiguous'?: Linter.RuleEntry<[]>
4892
4934
  /**
@@ -7944,6 +7986,11 @@ interface RuleOptions {
7944
7986
  * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/meta-inline-properties.md
7945
7987
  */
7946
7988
  'storybook/meta-inline-properties'?: Linter.RuleEntry<StorybookMetaInlineProperties>
7989
+ /**
7990
+ * Meta should use `satisfies Meta`
7991
+ * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/meta-satisfies-type.md
7992
+ */
7993
+ 'storybook/meta-satisfies-type'?: Linter.RuleEntry<[]>
7947
7994
  /**
7948
7995
  * A story should not have a redundant name property
7949
7996
  * @see https://github.com/storybookjs/eslint-plugin-storybook/blob/main/docs/rules/no-redundant-story-name.md
@@ -8154,642 +8201,643 @@ interface RuleOptions {
8154
8201
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
8155
8202
  /**
8156
8203
  * Improve regexes by making them shorter, consistent, and safer.
8157
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/better-regex.md
8204
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/better-regex.md
8158
8205
  */
8159
8206
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
8160
8207
  /**
8161
8208
  * Enforce a specific parameter name in catch clauses.
8162
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/catch-error-name.md
8209
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/catch-error-name.md
8163
8210
  */
8164
8211
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
8165
8212
  /**
8166
8213
  * Enforce consistent assertion style with `node:assert`.
8167
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-assert.md
8214
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-assert.md
8168
8215
  */
8169
8216
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>
8170
8217
  /**
8171
8218
  * Prefer passing `Date` directly to the constructor when cloning.
8172
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-date-clone.md
8219
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-date-clone.md
8173
8220
  */
8174
8221
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>
8175
8222
  /**
8176
8223
  * Use destructured variables over properties.
8177
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-destructuring.md
8224
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-destructuring.md
8178
8225
  */
8179
8226
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
8180
8227
  /**
8181
8228
  * Prefer consistent types when spreading a ternary in an array literal.
8182
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-empty-array-spread.md
8229
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-empty-array-spread.md
8183
8230
  */
8184
8231
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
8185
8232
  /**
8186
8233
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
8187
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-existence-index-check.md
8234
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-existence-index-check.md
8188
8235
  */
8189
8236
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
8190
8237
  /**
8191
8238
  * Move function definitions to the highest possible scope.
8192
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-function-scoping.md
8239
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-function-scoping.md
8193
8240
  */
8194
8241
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
8195
8242
  /**
8196
8243
  * Enforce correct `Error` subclassing.
8197
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/custom-error-definition.md
8244
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/custom-error-definition.md
8198
8245
  */
8199
8246
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
8200
8247
  /**
8201
8248
  * Enforce no spaces between braces.
8202
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/empty-brace-spaces.md
8249
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/empty-brace-spaces.md
8203
8250
  */
8204
8251
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
8205
8252
  /**
8206
8253
  * Enforce passing a `message` value when creating a built-in error.
8207
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/error-message.md
8254
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/error-message.md
8208
8255
  */
8209
8256
  'unicorn/error-message'?: Linter.RuleEntry<[]>
8210
8257
  /**
8211
- * Require escape sequences to use uppercase values.
8212
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/escape-case.md
8258
+ * Require escape sequences to use uppercase or lowercase values.
8259
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/escape-case.md
8213
8260
  */
8214
- 'unicorn/escape-case'?: Linter.RuleEntry<[]>
8261
+ 'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>
8215
8262
  /**
8216
8263
  * Add expiration conditions to TODO comments.
8217
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/expiring-todo-comments.md
8264
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/expiring-todo-comments.md
8218
8265
  */
8219
8266
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
8220
8267
  /**
8221
8268
  * Enforce explicitly comparing the `length` or `size` property of a value.
8222
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/explicit-length-check.md
8269
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/explicit-length-check.md
8223
8270
  */
8224
8271
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
8225
8272
  /**
8226
8273
  * Enforce a case style for filenames.
8227
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/filename-case.md
8274
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/filename-case.md
8228
8275
  */
8229
8276
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
8230
8277
  /**
8231
8278
  * Enforce specific import styles per module.
8232
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/import-style.md
8279
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/import-style.md
8233
8280
  */
8234
8281
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
8235
8282
  /**
8236
8283
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
8237
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/new-for-builtins.md
8284
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/new-for-builtins.md
8238
8285
  */
8239
8286
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
8240
8287
  /**
8241
8288
  * Enforce specifying rules to disable in `eslint-disable` comments.
8242
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-abusive-eslint-disable.md
8289
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-abusive-eslint-disable.md
8243
8290
  */
8244
8291
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
8245
8292
  /**
8246
8293
  * Disallow recursive access to `this` within getters and setters.
8247
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-accessor-recursion.md
8294
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-accessor-recursion.md
8248
8295
  */
8249
8296
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>
8250
8297
  /**
8251
8298
  * Disallow anonymous functions and classes as the default export.
8252
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-anonymous-default-export.md
8299
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-anonymous-default-export.md
8253
8300
  */
8254
8301
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
8255
8302
  /**
8256
8303
  * Prevent passing a function reference directly to iterator methods.
8257
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-callback-reference.md
8304
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-callback-reference.md
8258
8305
  */
8259
8306
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
8260
8307
  /**
8261
8308
  * Prefer `for…of` over the `forEach` method.
8262
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-for-each.md
8309
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-for-each.md
8263
8310
  */
8264
8311
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
8265
8312
  /**
8266
8313
  * Disallow using the `this` argument in array methods.
8267
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-method-this-argument.md
8314
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-method-this-argument.md
8268
8315
  */
8269
8316
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
8270
8317
  /**
8271
8318
  * Enforce combining multiple `Array#push()` into one call.
8272
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-push-push.md
8319
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-push-push.md
8273
8320
  */
8274
8321
  'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
8275
8322
  /**
8276
8323
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
8277
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-reduce.md
8324
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-reduce.md
8278
8325
  */
8279
8326
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
8280
8327
  /**
8281
8328
  * Disallow member access from await expression.
8282
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-expression-member.md
8329
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-await-expression-member.md
8283
8330
  */
8284
8331
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
8285
8332
  /**
8286
8333
  * Disallow using `await` in `Promise` method parameters.
8287
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-in-promise-methods.md
8334
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-await-in-promise-methods.md
8288
8335
  */
8289
8336
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
8290
8337
  /**
8291
8338
  * Do not use leading/trailing space between `console.log` parameters.
8292
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-console-spaces.md
8339
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-console-spaces.md
8293
8340
  */
8294
8341
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
8295
8342
  /**
8296
8343
  * Do not use `document.cookie` directly.
8297
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-document-cookie.md
8344
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-document-cookie.md
8298
8345
  */
8299
8346
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
8300
8347
  /**
8301
8348
  * Disallow empty files.
8302
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-empty-file.md
8349
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-empty-file.md
8303
8350
  */
8304
8351
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
8305
8352
  /**
8306
8353
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
8307
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-for-loop.md
8354
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-for-loop.md
8308
8355
  */
8309
8356
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
8310
8357
  /**
8311
8358
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
8312
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-hex-escape.md
8359
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-hex-escape.md
8313
8360
  */
8314
8361
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
8315
8362
  /**
8316
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/deprecated-rules.md#no-instanceof-array
8363
+ * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
8364
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/deprecated-rules.md#no-instanceof-array
8317
8365
  * @deprecated
8318
8366
  */
8319
8367
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
8320
8368
  /**
8321
8369
  * Disallow `instanceof` with built-in objects
8322
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-instanceof-builtins.md
8370
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-instanceof-builtins.md
8323
8371
  */
8324
8372
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>
8325
8373
  /**
8326
8374
  * Disallow invalid options in `fetch()` and `new Request()`.
8327
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-fetch-options.md
8375
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-invalid-fetch-options.md
8328
8376
  */
8329
8377
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
8330
8378
  /**
8331
8379
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
8332
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-remove-event-listener.md
8380
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-invalid-remove-event-listener.md
8333
8381
  */
8334
8382
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
8335
8383
  /**
8336
8384
  * Disallow identifiers starting with `new` or `class`.
8337
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-keyword-prefix.md
8385
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-keyword-prefix.md
8338
8386
  */
8339
8387
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
8340
8388
  /**
8341
8389
  * Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
8342
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-length-as-slice-end.md
8390
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-length-as-slice-end.md
8343
8391
  */
8344
8392
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
8345
8393
  /**
8346
8394
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
8347
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-lonely-if.md
8395
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-lonely-if.md
8348
8396
  */
8349
8397
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
8350
8398
  /**
8351
8399
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
8352
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-magic-array-flat-depth.md
8400
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-magic-array-flat-depth.md
8353
8401
  */
8354
8402
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
8355
8403
  /**
8356
8404
  * Disallow named usage of default import and export.
8357
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-named-default.md
8405
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-named-default.md
8358
8406
  */
8359
8407
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>
8360
8408
  /**
8361
8409
  * Disallow negated conditions.
8362
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negated-condition.md
8410
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-negated-condition.md
8363
8411
  */
8364
8412
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
8365
8413
  /**
8366
8414
  * Disallow negated expression in equality check.
8367
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negation-in-equality-check.md
8415
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-negation-in-equality-check.md
8368
8416
  */
8369
8417
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
8370
8418
  /**
8371
8419
  * Disallow nested ternary expressions.
8372
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-nested-ternary.md
8420
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-nested-ternary.md
8373
8421
  */
8374
8422
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
8375
8423
  /**
8376
8424
  * Disallow `new Array()`.
8377
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-array.md
8425
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-new-array.md
8378
8426
  */
8379
8427
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>
8380
8428
  /**
8381
8429
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
8382
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-buffer.md
8430
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-new-buffer.md
8383
8431
  */
8384
8432
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
8385
8433
  /**
8386
8434
  * Disallow the use of the `null` literal.
8387
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-null.md
8435
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-null.md
8388
8436
  */
8389
8437
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
8390
8438
  /**
8391
8439
  * Disallow the use of objects as default parameters.
8392
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-object-as-default-parameter.md
8440
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-object-as-default-parameter.md
8393
8441
  */
8394
8442
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
8395
8443
  /**
8396
8444
  * Disallow `process.exit()`.
8397
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-process-exit.md
8445
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-process-exit.md
8398
8446
  */
8399
8447
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
8400
8448
  /**
8401
8449
  * Disallow passing single-element arrays to `Promise` methods.
8402
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-single-promise-in-promise-methods.md
8450
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-single-promise-in-promise-methods.md
8403
8451
  */
8404
8452
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
8405
8453
  /**
8406
8454
  * Disallow classes that only have static members.
8407
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-static-only-class.md
8455
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-static-only-class.md
8408
8456
  */
8409
8457
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
8410
8458
  /**
8411
8459
  * Disallow `then` property.
8412
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-thenable.md
8460
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-thenable.md
8413
8461
  */
8414
8462
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>
8415
8463
  /**
8416
8464
  * Disallow assigning `this` to a variable.
8417
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-this-assignment.md
8465
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-this-assignment.md
8418
8466
  */
8419
8467
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
8420
8468
  /**
8421
8469
  * Disallow comparing `undefined` using `typeof`.
8422
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-typeof-undefined.md
8470
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-typeof-undefined.md
8423
8471
  */
8424
8472
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
8425
8473
  /**
8426
8474
  * Disallow awaiting non-promise values.
8427
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-await.md
8475
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unnecessary-await.md
8428
8476
  */
8429
8477
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
8430
8478
  /**
8431
8479
  * Enforce the use of built-in methods instead of unnecessary polyfills.
8432
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-polyfills.md
8480
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unnecessary-polyfills.md
8433
8481
  */
8434
8482
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
8435
8483
  /**
8436
8484
  * Disallow unreadable array destructuring.
8437
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-array-destructuring.md
8485
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unreadable-array-destructuring.md
8438
8486
  */
8439
8487
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
8440
8488
  /**
8441
8489
  * Disallow unreadable IIFEs.
8442
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-iife.md
8490
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unreadable-iife.md
8443
8491
  */
8444
8492
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
8445
8493
  /**
8446
8494
  * Disallow unused object properties.
8447
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unused-properties.md
8495
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unused-properties.md
8448
8496
  */
8449
8497
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
8450
8498
  /**
8451
8499
  * Disallow useless fallback when spreading in object literals.
8452
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-fallback-in-spread.md
8500
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-fallback-in-spread.md
8453
8501
  */
8454
8502
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
8455
8503
  /**
8456
8504
  * Disallow useless array length check.
8457
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-length-check.md
8505
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-length-check.md
8458
8506
  */
8459
8507
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
8460
8508
  /**
8461
8509
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
8462
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-promise-resolve-reject.md
8510
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-promise-resolve-reject.md
8463
8511
  */
8464
8512
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
8465
8513
  /**
8466
8514
  * Disallow unnecessary spread.
8467
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-spread.md
8515
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-spread.md
8468
8516
  */
8469
8517
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
8470
8518
  /**
8471
8519
  * Disallow useless case in switch statements.
8472
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-switch-case.md
8520
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-switch-case.md
8473
8521
  */
8474
8522
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
8475
8523
  /**
8476
8524
  * Disallow useless `undefined`.
8477
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-undefined.md
8525
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-undefined.md
8478
8526
  */
8479
8527
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
8480
8528
  /**
8481
8529
  * Disallow number literals with zero fractions or dangling dots.
8482
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-zero-fractions.md
8530
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-zero-fractions.md
8483
8531
  */
8484
8532
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
8485
8533
  /**
8486
8534
  * Enforce proper case for numeric literals.
8487
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/number-literal-case.md
8535
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/number-literal-case.md
8488
8536
  */
8489
- 'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
8537
+ 'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>
8490
8538
  /**
8491
8539
  * Enforce the style of numeric separators by correctly grouping digits.
8492
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/numeric-separators-style.md
8540
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/numeric-separators-style.md
8493
8541
  */
8494
8542
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
8495
8543
  /**
8496
8544
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
8497
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-add-event-listener.md
8545
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-add-event-listener.md
8498
8546
  */
8499
8547
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
8500
8548
  /**
8501
8549
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
8502
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-find.md
8550
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-find.md
8503
8551
  */
8504
8552
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
8505
8553
  /**
8506
8554
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
8507
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat.md
8555
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-flat.md
8508
8556
  */
8509
8557
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
8510
8558
  /**
8511
8559
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
8512
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat-map.md
8560
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-flat-map.md
8513
8561
  */
8514
8562
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
8515
8563
  /**
8516
8564
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
8517
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-index-of.md
8565
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-index-of.md
8518
8566
  */
8519
8567
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
8520
8568
  /**
8521
8569
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
8522
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-some.md
8570
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-some.md
8523
8571
  */
8524
8572
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
8525
8573
  /**
8526
8574
  * Prefer `.at()` method for index access and `String#charAt()`.
8527
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-at.md
8575
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-at.md
8528
8576
  */
8529
8577
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
8530
8578
  /**
8531
8579
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
8532
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-blob-reading-methods.md
8580
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-blob-reading-methods.md
8533
8581
  */
8534
8582
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
8535
8583
  /**
8536
8584
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
8537
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-code-point.md
8585
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-code-point.md
8538
8586
  */
8539
8587
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
8540
8588
  /**
8541
8589
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
8542
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-date-now.md
8590
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-date-now.md
8543
8591
  */
8544
8592
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
8545
8593
  /**
8546
8594
  * Prefer default parameters over reassignment.
8547
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-default-parameters.md
8595
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-default-parameters.md
8548
8596
  */
8549
8597
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
8550
8598
  /**
8551
8599
  * Prefer `Node#append()` over `Node#appendChild()`.
8552
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-append.md
8600
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-append.md
8553
8601
  */
8554
8602
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
8555
8603
  /**
8556
8604
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
8557
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-dataset.md
8605
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-dataset.md
8558
8606
  */
8559
8607
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
8560
8608
  /**
8561
8609
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
8562
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-remove.md
8610
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-remove.md
8563
8611
  */
8564
8612
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
8565
8613
  /**
8566
8614
  * Prefer `.textContent` over `.innerText`.
8567
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-text-content.md
8615
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-text-content.md
8568
8616
  */
8569
8617
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
8570
8618
  /**
8571
8619
  * Prefer `EventTarget` over `EventEmitter`.
8572
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-event-target.md
8620
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-event-target.md
8573
8621
  */
8574
8622
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
8575
8623
  /**
8576
8624
  * Prefer `export…from` when re-exporting.
8577
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-export-from.md
8625
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-export-from.md
8578
8626
  */
8579
8627
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
8580
8628
  /**
8581
8629
  * Prefer `globalThis` over `window`, `self`, and `global`.
8582
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-global-this.md
8630
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-global-this.md
8583
8631
  */
8584
8632
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
8585
8633
  /**
8586
8634
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
8587
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-includes.md
8635
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-includes.md
8588
8636
  */
8589
8637
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
8590
8638
  /**
8591
8639
  * Prefer reading a JSON file as a buffer.
8592
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-json-parse-buffer.md
8640
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-json-parse-buffer.md
8593
8641
  */
8594
8642
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
8595
8643
  /**
8596
8644
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
8597
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-keyboard-event-key.md
8645
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-keyboard-event-key.md
8598
8646
  */
8599
8647
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
8600
8648
  /**
8601
8649
  * Prefer using a logical operator over a ternary.
8602
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-logical-operator-over-ternary.md
8650
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-logical-operator-over-ternary.md
8603
8651
  */
8604
8652
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
8605
8653
  /**
8606
8654
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
8607
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-min-max.md
8655
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-math-min-max.md
8608
8656
  */
8609
8657
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
8610
8658
  /**
8611
8659
  * Enforce the use of `Math.trunc` instead of bitwise operators.
8612
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-trunc.md
8660
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-math-trunc.md
8613
8661
  */
8614
8662
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
8615
8663
  /**
8616
8664
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
8617
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-dom-apis.md
8665
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-modern-dom-apis.md
8618
8666
  */
8619
8667
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
8620
8668
  /**
8621
8669
  * Prefer modern `Math` APIs over legacy patterns.
8622
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-math-apis.md
8670
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-modern-math-apis.md
8623
8671
  */
8624
8672
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
8625
8673
  /**
8626
8674
  * Prefer JavaScript modules (ESM) over CommonJS.
8627
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-module.md
8675
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-module.md
8628
8676
  */
8629
8677
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>
8630
8678
  /**
8631
8679
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
8632
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-native-coercion-functions.md
8680
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-native-coercion-functions.md
8633
8681
  */
8634
8682
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
8635
8683
  /**
8636
8684
  * Prefer negative index over `.length - index` when possible.
8637
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-negative-index.md
8685
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-negative-index.md
8638
8686
  */
8639
8687
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
8640
8688
  /**
8641
8689
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
8642
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-node-protocol.md
8690
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-node-protocol.md
8643
8691
  */
8644
8692
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
8645
8693
  /**
8646
8694
  * Prefer `Number` static properties over global ones.
8647
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-number-properties.md
8695
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-number-properties.md
8648
8696
  */
8649
8697
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
8650
8698
  /**
8651
8699
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
8652
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-object-from-entries.md
8700
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-object-from-entries.md
8653
8701
  */
8654
8702
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
8655
8703
  /**
8656
8704
  * Prefer omitting the `catch` binding parameter.
8657
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-optional-catch-binding.md
8705
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-optional-catch-binding.md
8658
8706
  */
8659
8707
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
8660
8708
  /**
8661
8709
  * Prefer borrowing methods from the prototype instead of the instance.
8662
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-prototype-methods.md
8710
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-prototype-methods.md
8663
8711
  */
8664
8712
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
8665
8713
  /**
8666
8714
  * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
8667
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-query-selector.md
8715
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-query-selector.md
8668
8716
  */
8669
8717
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
8670
8718
  /**
8671
8719
  * Prefer `Reflect.apply()` over `Function#apply()`.
8672
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-reflect-apply.md
8720
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-reflect-apply.md
8673
8721
  */
8674
8722
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
8675
8723
  /**
8676
8724
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
8677
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-regexp-test.md
8725
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-regexp-test.md
8678
8726
  */
8679
8727
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
8680
8728
  /**
8681
8729
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
8682
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-has.md
8730
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-set-has.md
8683
8731
  */
8684
8732
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
8685
8733
  /**
8686
8734
  * Prefer using `Set#size` instead of `Array#length`.
8687
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-size.md
8735
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-set-size.md
8688
8736
  */
8689
8737
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
8690
8738
  /**
8691
8739
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
8692
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-spread.md
8740
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-spread.md
8693
8741
  */
8694
8742
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
8695
8743
  /**
8696
8744
  * Prefer using the `String.raw` tag to avoid escaping `\`.
8697
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-raw.md
8745
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-raw.md
8698
8746
  */
8699
8747
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
8700
8748
  /**
8701
8749
  * Prefer `String#replaceAll()` over regex searches with the global flag.
8702
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-replace-all.md
8750
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-replace-all.md
8703
8751
  */
8704
8752
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
8705
8753
  /**
8706
8754
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
8707
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-slice.md
8755
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-slice.md
8708
8756
  */
8709
8757
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
8710
8758
  /**
8711
8759
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
8712
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-starts-ends-with.md
8760
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-starts-ends-with.md
8713
8761
  */
8714
8762
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
8715
8763
  /**
8716
8764
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
8717
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-trim-start-end.md
8765
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-trim-start-end.md
8718
8766
  */
8719
8767
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
8720
8768
  /**
8721
8769
  * Prefer using `structuredClone` to create a deep clone.
8722
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-structured-clone.md
8770
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-structured-clone.md
8723
8771
  */
8724
8772
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
8725
8773
  /**
8726
8774
  * Prefer `switch` over multiple `else-if`.
8727
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-switch.md
8775
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-switch.md
8728
8776
  */
8729
8777
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
8730
8778
  /**
8731
8779
  * Prefer ternary expressions over simple `if-else` statements.
8732
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-ternary.md
8780
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-ternary.md
8733
8781
  */
8734
8782
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
8735
8783
  /**
8736
8784
  * Prefer top-level await over top-level promises and async function calls.
8737
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-top-level-await.md
8785
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-top-level-await.md
8738
8786
  */
8739
8787
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
8740
8788
  /**
8741
8789
  * Enforce throwing `TypeError` in type checking conditions.
8742
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-type-error.md
8790
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-type-error.md
8743
8791
  */
8744
8792
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
8745
8793
  /**
8746
8794
  * Prevent abbreviations.
8747
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prevent-abbreviations.md
8795
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prevent-abbreviations.md
8748
8796
  */
8749
8797
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
8750
8798
  /**
8751
8799
  * Enforce consistent relative URL style.
8752
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/relative-url-style.md
8800
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/relative-url-style.md
8753
8801
  */
8754
8802
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
8755
8803
  /**
8756
8804
  * Enforce using the separator argument with `Array#join()`.
8757
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-array-join-separator.md
8805
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-array-join-separator.md
8758
8806
  */
8759
8807
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
8760
8808
  /**
8761
8809
  * Enforce using the digits argument with `Number#toFixed()`.
8762
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-number-to-fixed-digits-argument.md
8810
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-number-to-fixed-digits-argument.md
8763
8811
  */
8764
8812
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
8765
8813
  /**
8766
8814
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
8767
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-post-message-target-origin.md
8815
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-post-message-target-origin.md
8768
8816
  */
8769
8817
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
8770
8818
  /**
8771
8819
  * Enforce better string content.
8772
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/string-content.md
8820
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/string-content.md
8773
8821
  */
8774
8822
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
8775
8823
  /**
8776
8824
  * Enforce consistent brace style for `case` clauses.
8777
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/switch-case-braces.md
8825
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/switch-case-braces.md
8778
8826
  */
8779
8827
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
8780
8828
  /**
8781
8829
  * Fix whitespace-insensitive template indentation.
8782
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/template-indent.md
8830
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/template-indent.md
8783
8831
  */
8784
8832
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
8785
8833
  /**
8786
8834
  * Enforce consistent case for text encoding identifiers.
8787
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/text-encoding-identifier-case.md
8835
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/text-encoding-identifier-case.md
8788
8836
  */
8789
8837
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
8790
8838
  /**
8791
8839
  * Require `new` when creating an error.
8792
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/throw-new-error.md
8840
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/throw-new-error.md
8793
8841
  */
8794
8842
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
8795
8843
  /**
@@ -11285,6 +11333,8 @@ type TypescriptEslintPreferNullishCoalescing = []|[{
11285
11333
 
11286
11334
  ignoreConditionalTests?: boolean
11287
11335
 
11336
+ ignoreIfStatements?: boolean
11337
+
11288
11338
  ignoreMixedLogicalExpressions?: boolean
11289
11339
 
11290
11340
  ignorePrimitives?: ({
@@ -11803,6 +11853,8 @@ type CapitalizedComments = []|[("always" | "never")]|[("always" | "never"), ({
11803
11853
  type ClassMethodsUseThis = []|[{
11804
11854
  exceptMethods?: string[]
11805
11855
  enforceForClassFields?: boolean
11856
+ ignoreOverrideMethods?: boolean
11857
+ ignoreClassesWithImplements?: ("all" | "public-fields")
11806
11858
  }]
11807
11859
  // ----- comma-dangle -----
11808
11860
  type CommaDangle = []|[(_CommaDangleValue | {
@@ -13749,7 +13801,7 @@ type NNoUnsupportedFeaturesEsSyntax = []|[{
13749
13801
  type NNoUnsupportedFeaturesNodeBuiltins = []|[{
13750
13802
  version?: string
13751
13803
  allowExperimental?: boolean
13752
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
13804
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
13753
13805
  }]
13754
13806
  // ----- n/prefer-global/buffer -----
13755
13807
  type NPreferGlobalBuffer = []|[("always" | "never")]
@@ -14745,7 +14797,7 @@ type PerfectionistSortEnums = []|[{
14745
14797
  })[]
14746
14798
  }]
14747
14799
  // ----- perfectionist/sort-exports -----
14748
- type PerfectionistSortExports = []|[{
14800
+ type PerfectionistSortExports = {
14749
14801
 
14750
14802
  fallbackSort?: {
14751
14803
 
@@ -14769,6 +14821,68 @@ type PerfectionistSortExports = []|[{
14769
14821
 
14770
14822
  groupKind?: ("mixed" | "values-first" | "types-first")
14771
14823
 
14824
+ customGroups?: ({
14825
+
14826
+ newlinesInside?: ("always" | "never")
14827
+
14828
+ fallbackSort?: {
14829
+
14830
+ order?: ("asc" | "desc")
14831
+
14832
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
14833
+ [k: string]: unknown | undefined
14834
+ }
14835
+
14836
+ groupName?: string
14837
+
14838
+ order?: ("asc" | "desc")
14839
+
14840
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
14841
+ anyOf?: {
14842
+
14843
+ modifiers?: ("value" | "type")[]
14844
+
14845
+ selector?: "export"
14846
+
14847
+ elementNamePattern?: (({
14848
+ pattern?: string
14849
+ flags?: string
14850
+ } | string)[] | ({
14851
+ pattern?: string
14852
+ flags?: string
14853
+ } | string))
14854
+ }[]
14855
+ } | {
14856
+
14857
+ newlinesInside?: ("always" | "never")
14858
+
14859
+ fallbackSort?: {
14860
+
14861
+ order?: ("asc" | "desc")
14862
+
14863
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
14864
+ [k: string]: unknown | undefined
14865
+ }
14866
+
14867
+ groupName?: string
14868
+
14869
+ order?: ("asc" | "desc")
14870
+
14871
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
14872
+
14873
+ modifiers?: ("value" | "type")[]
14874
+
14875
+ selector?: "export"
14876
+
14877
+ elementNamePattern?: (({
14878
+ pattern?: string
14879
+ flags?: string
14880
+ } | string)[] | ({
14881
+ pattern?: string
14882
+ flags?: string
14883
+ } | string))
14884
+ })[]
14885
+
14772
14886
  partitionByComment?: (boolean | (({
14773
14887
  pattern?: string
14774
14888
  flags?: string
@@ -14793,7 +14907,14 @@ type PerfectionistSortExports = []|[{
14793
14907
  })
14794
14908
 
14795
14909
  partitionByNewLine?: boolean
14796
- }]
14910
+
14911
+ newlinesBetween?: ("ignore" | "always" | "never")
14912
+
14913
+ groups?: (string | string[] | {
14914
+
14915
+ newlinesBetween?: ("ignore" | "always" | "never")
14916
+ })[]
14917
+ }[]
14797
14918
  // ----- perfectionist/sort-heritage-clauses -----
14798
14919
  type PerfectionistSortHeritageClauses = []|[{
14799
14920
 
@@ -15021,6 +15142,8 @@ type PerfectionistSortInterfaces = {
15021
15142
  } | string))
15022
15143
  sortBy?: ("name" | "value")
15023
15144
  })[])
15145
+
15146
+ groupKind?: ("mixed" | "required-first" | "optional-first")
15024
15147
  useConfigurationIf?: {
15025
15148
 
15026
15149
  allNamesMatchPattern?: (({
@@ -15040,8 +15163,6 @@ type PerfectionistSortInterfaces = {
15040
15163
  } | string))
15041
15164
  }
15042
15165
 
15043
- groupKind?: ("mixed" | "required-first" | "optional-first")
15044
-
15045
15166
  partitionByComment?: (boolean | (({
15046
15167
  pattern?: string
15047
15168
  flags?: string
@@ -15160,6 +15281,85 @@ type PerfectionistSortJsxProps = {
15160
15281
  order?: ("asc" | "desc")
15161
15282
 
15162
15283
  type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
15284
+ customGroups?: ({
15285
+ [k: string]: (string | string[]) | undefined
15286
+ } | ({
15287
+
15288
+ newlinesInside?: ("always" | "never")
15289
+
15290
+ fallbackSort?: {
15291
+
15292
+ order?: ("asc" | "desc")
15293
+
15294
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
15295
+ [k: string]: unknown | undefined
15296
+ }
15297
+
15298
+ groupName?: string
15299
+
15300
+ order?: ("asc" | "desc")
15301
+
15302
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
15303
+ anyOf?: {
15304
+
15305
+ modifiers?: ("shorthand" | "multiline")[]
15306
+
15307
+ selector?: ("multiline" | "prop" | "shorthand")
15308
+
15309
+ elementValuePattern?: (({
15310
+ pattern?: string
15311
+ flags?: string
15312
+ } | string)[] | ({
15313
+ pattern?: string
15314
+ flags?: string
15315
+ } | string))
15316
+
15317
+ elementNamePattern?: (({
15318
+ pattern?: string
15319
+ flags?: string
15320
+ } | string)[] | ({
15321
+ pattern?: string
15322
+ flags?: string
15323
+ } | string))
15324
+ }[]
15325
+ } | {
15326
+
15327
+ newlinesInside?: ("always" | "never")
15328
+
15329
+ fallbackSort?: {
15330
+
15331
+ order?: ("asc" | "desc")
15332
+
15333
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
15334
+ [k: string]: unknown | undefined
15335
+ }
15336
+
15337
+ groupName?: string
15338
+
15339
+ order?: ("asc" | "desc")
15340
+
15341
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
15342
+
15343
+ modifiers?: ("shorthand" | "multiline")[]
15344
+
15345
+ selector?: ("multiline" | "prop" | "shorthand")
15346
+
15347
+ elementValuePattern?: (({
15348
+ pattern?: string
15349
+ flags?: string
15350
+ } | string)[] | ({
15351
+ pattern?: string
15352
+ flags?: string
15353
+ } | string))
15354
+
15355
+ elementNamePattern?: (({
15356
+ pattern?: string
15357
+ flags?: string
15358
+ } | string)[] | ({
15359
+ pattern?: string
15360
+ flags?: string
15361
+ } | string))
15362
+ })[])
15163
15363
  useConfigurationIf?: {
15164
15364
 
15165
15365
  allNamesMatchPattern?: (({
@@ -15183,10 +15383,6 @@ type PerfectionistSortJsxProps = {
15183
15383
 
15184
15384
  newlinesBetween?: ("ignore" | "always" | "never")
15185
15385
 
15186
- customGroups?: {
15187
- [k: string]: (string | string[]) | undefined
15188
- }
15189
-
15190
15386
  ignorePattern?: (({
15191
15387
  pattern?: string
15192
15388
  flags?: string
@@ -15661,6 +15857,8 @@ type PerfectionistSortObjectTypes = {
15661
15857
  } | string))
15662
15858
  sortBy?: ("name" | "value")
15663
15859
  })[])
15860
+
15861
+ groupKind?: ("mixed" | "required-first" | "optional-first")
15664
15862
  useConfigurationIf?: {
15665
15863
 
15666
15864
  allNamesMatchPattern?: (({
@@ -15680,8 +15878,6 @@ type PerfectionistSortObjectTypes = {
15680
15878
  } | string))
15681
15879
  }
15682
15880
 
15683
- groupKind?: ("mixed" | "required-first" | "optional-first")
15684
-
15685
15881
  partitionByComment?: (boolean | (({
15686
15882
  pattern?: string
15687
15883
  flags?: string
@@ -16601,6 +16797,8 @@ type UnicornCatchErrorName = []|[{
16601
16797
  type UnicornConsistentFunctionScoping = []|[{
16602
16798
  checkArrowFunctions?: boolean
16603
16799
  }]
16800
+ // ----- unicorn/escape-case -----
16801
+ type UnicornEscapeCase = []|[("uppercase" | "lowercase")]
16604
16802
  // ----- unicorn/expiring-todo-comments -----
16605
16803
  type UnicornExpiringTodoComments = []|[{
16606
16804
  terms?: string[]
@@ -16685,6 +16883,10 @@ type UnicornNoUselessUndefined = []|[{
16685
16883
  checkArguments?: boolean
16686
16884
  checkArrowFunctionBody?: boolean
16687
16885
  }]
16886
+ // ----- unicorn/number-literal-case -----
16887
+ type UnicornNumberLiteralCase = []|[{
16888
+ hexadecimalValue?: ("uppercase" | "lowercase")
16889
+ }]
16688
16890
  // ----- unicorn/numeric-separators-style -----
16689
16891
  type UnicornNumericSeparatorsStyle = []|[{
16690
16892
  binary?: {
@@ -17056,7 +17258,7 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
17056
17258
  "import-x/resolver-next": {
17057
17259
  interfaceVersion: number;
17058
17260
  name: string;
17059
- resolve(source: string, file: string): eslint_plugin_import_x_types_js.ResolvedResult;
17261
+ resolve(source: string, file: string): ResolvedResult;
17060
17262
  }[];
17061
17263
  };
17062
17264
  } | {
@@ -17100,16 +17302,14 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
17100
17302
  "import-x/no-duplicates": 1;
17101
17303
  };
17102
17304
  };
17103
- "stage-0": eslint_plugin_import_x_types_js.PluginConfig;
17305
+ "stage-0": eslint_plugin_import_x_types.PluginConfig;
17104
17306
  react: {
17105
17307
  settings: {
17106
17308
  "import-x/extensions": (".js" | ".jsx")[];
17107
17309
  };
17108
- languageOptions: {
17109
- parserOptions: {
17110
- ecmaFeatures: {
17111
- jsx: true;
17112
- };
17310
+ parserOptions: {
17311
+ ecmaFeatures: {
17312
+ jsx: true;
17113
17313
  };
17114
17314
  };
17115
17315
  };
@@ -17144,300 +17344,65 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
17144
17344
  };
17145
17345
  };
17146
17346
  flatConfigs: {
17147
- recommended: eslint_plugin_import_x_types_js.PluginFlatConfig;
17148
- errors: eslint_plugin_import_x_types_js.PluginFlatConfig;
17149
- warnings: eslint_plugin_import_x_types_js.PluginFlatConfig;
17150
- "stage-0": eslint_plugin_import_x_types_js.PluginFlatConfig;
17151
- react: eslint_plugin_import_x_types_js.PluginFlatConfig;
17152
- "react-native": eslint_plugin_import_x_types_js.PluginFlatConfig;
17153
- electron: eslint_plugin_import_x_types_js.PluginFlatConfig;
17154
- typescript: eslint_plugin_import_x_types_js.PluginFlatConfig;
17347
+ recommended: eslint_plugin_import_x_types.PluginFlatConfig;
17348
+ errors: eslint_plugin_import_x_types.PluginFlatConfig;
17349
+ warnings: eslint_plugin_import_x_types.PluginFlatConfig;
17350
+ "stage-0": eslint_plugin_import_x_types.PluginFlatConfig;
17351
+ react: eslint_plugin_import_x_types.PluginFlatConfig;
17352
+ "react-native": eslint_plugin_import_x_types.PluginFlatConfig;
17353
+ electron: eslint_plugin_import_x_types.PluginFlatConfig;
17354
+ typescript: eslint_plugin_import_x_types.PluginFlatConfig;
17155
17355
  };
17156
17356
  rules: {
17157
- "no-unresolved": _typescript_eslint_utils_ts_eslint.RuleModule<"unresolved" | "casingMismatch", [((eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions & {
17158
- caseSensitive?: boolean;
17159
- caseSensitiveStrict?: boolean;
17160
- }) | undefined)?], {
17161
- category?: string;
17162
- recommended?: true;
17163
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17164
- named: _typescript_eslint_utils_ts_eslint.RuleModule<"notFound" | "notFoundDeep", [(eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions | undefined)?], {
17165
- category?: string;
17166
- recommended?: true;
17167
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17168
- default: _typescript_eslint_utils_ts_eslint.RuleModule<"noDefaultExport", [], {
17169
- category?: string;
17170
- recommended?: true;
17171
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17172
- namespace: _typescript_eslint_utils_ts_eslint.RuleModule<"noNamesFound" | "computedReference" | "namespaceMember" | "topLevelNames" | "notFoundInNamespace" | "notFoundInNamespaceDeep", [{
17173
- allowComputed?: boolean;
17174
- }], {
17175
- category?: string;
17176
- recommended?: true;
17177
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17178
- "no-namespace": _typescript_eslint_utils_ts_eslint.RuleModule<"noNamespace", [({
17179
- ignore?: string[];
17180
- } | undefined)?], {
17181
- category?: string;
17182
- recommended?: true;
17183
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17184
- export: _typescript_eslint_utils_ts_eslint.RuleModule<"noNamed" | "multiDefault" | "multiNamed", [], {
17185
- category?: string;
17186
- recommended?: true;
17187
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17188
- "no-mutable-exports": _typescript_eslint_utils_ts_eslint.RuleModule<"noMutable", [], {
17189
- category?: string;
17190
- recommended?: true;
17191
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17192
- extensions: _typescript_eslint_utils_ts_eslint.RuleModule<"missing" | "missingKnown" | "unexpected", [] | ["always" | "never" | "ignorePackages"] | ["always" | "never" | "ignorePackages", {
17193
- ignorePackages?: boolean;
17194
- checkTypeImports?: boolean;
17195
- }] | ["always" | "never" | "ignorePackages", {
17196
- ignorePackages?: boolean;
17197
- checkTypeImports?: boolean;
17198
- pattern: Partial<Record<string, "always" | "never" | "ignorePackages">>;
17199
- }] | ["always" | "never" | "ignorePackages", Partial<Record<string, "always" | "never" | "ignorePackages">>] | [Partial<Record<string, "always" | "never" | "ignorePackages">>], {
17200
- category?: string;
17201
- recommended?: true;
17202
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17203
- "no-restricted-paths": _typescript_eslint_utils_ts_eslint.RuleModule<"path" | "mixedGlob" | "glob" | "zone", [({
17204
- basePath?: string;
17205
- zones?: Array<{
17206
- from: eslint_plugin_import_x_types_js.Arrayable<string>;
17207
- target: eslint_plugin_import_x_types_js.Arrayable<string>;
17208
- message?: string;
17209
- except?: string[];
17210
- }>;
17211
- } | undefined)?], {
17212
- category?: string;
17213
- recommended?: true;
17214
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17215
- "no-internal-modules": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [({
17216
- allow?: string[];
17217
- forbid?: string[];
17218
- } | undefined)?], {
17219
- category?: string;
17220
- recommended?: true;
17221
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17222
- "group-exports": _typescript_eslint_utils_ts_eslint.RuleModule<"ExportNamedDeclaration" | "AssignmentExpression", [], {
17223
- category?: string;
17224
- recommended?: true;
17225
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17226
- "no-relative-packages": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [(eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions | undefined)?], {
17227
- category?: string;
17228
- recommended?: true;
17229
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17230
- "no-relative-parent-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [(eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions | undefined)?], {
17231
- category?: string;
17232
- recommended?: true;
17233
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17234
- "consistent-type-specifier-style": _typescript_eslint_utils_ts_eslint.RuleModule<"inline" | "topLevel", [(("prefer-inline" | "prefer-top-level") | undefined)?], {
17235
- category?: string;
17236
- recommended?: true;
17237
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17238
- "no-self-import": _typescript_eslint_utils_ts_eslint.RuleModule<"self", [], {
17239
- category?: string;
17240
- recommended?: true;
17241
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17242
- "no-cycle": _typescript_eslint_utils_ts_eslint.RuleModule<"cycle" | "cycleSource", [(({
17243
- allowUnsafeDynamicCyclicDependency?: boolean;
17244
- ignoreExternal?: boolean;
17245
- maxDepth?: number | "\u221E";
17246
- } & eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions) | undefined)?], {
17247
- category?: string;
17248
- recommended?: true;
17249
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17250
- "no-named-default": _typescript_eslint_utils_ts_eslint.RuleModule<"default", [], {
17251
- category?: string;
17252
- recommended?: true;
17253
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17254
- "no-named-as-default": _typescript_eslint_utils_ts_eslint.RuleModule<"default", [], {
17255
- category?: string;
17256
- recommended?: true;
17257
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17258
- "no-named-as-default-member": _typescript_eslint_utils_ts_eslint.RuleModule<"member", [], {
17259
- category?: string;
17260
- recommended?: true;
17261
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17262
- "no-anonymous-default-export": _typescript_eslint_utils_ts_eslint.RuleModule<"assign" | "anonymous", [({
17263
- allowArray?: boolean;
17264
- allowArrowFunction?: boolean;
17265
- allowCallExpression?: boolean;
17266
- allowAnonymousClass?: boolean;
17267
- allowAnonymousFunction?: boolean;
17268
- allowLiteral?: boolean;
17269
- allowObject?: boolean;
17270
- allowNew?: boolean;
17271
- } | undefined)?], {
17272
- category?: string;
17273
- recommended?: true;
17274
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17275
- "no-rename-default": _typescript_eslint_utils_ts_eslint.RuleModule<"renameDefault", [((eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions & {
17276
- preventRenamingBindings?: boolean;
17277
- }) | undefined)?], {
17278
- category?: string;
17279
- recommended?: true;
17280
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17281
- "no-unused-modules": _typescript_eslint_utils_ts_eslint.RuleModule<"notFound" | "unused", {
17282
- src?: string[];
17283
- ignoreExports?: string[];
17284
- missingExports?: true;
17285
- unusedExports?: boolean;
17286
- ignoreUnusedTypeExports?: boolean;
17287
- }[], {
17288
- category?: string;
17289
- recommended?: true;
17290
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17291
- "no-commonjs": _typescript_eslint_utils_ts_eslint.RuleModule<"import" | "export", [(({
17292
- allowPrimitiveModules?: boolean;
17293
- allowRequire?: boolean;
17294
- allowConditionalRequire?: boolean;
17295
- } | "allow-primitive-modules") | undefined)?], {
17296
- category?: string;
17297
- recommended?: true;
17298
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17299
- "no-amd": _typescript_eslint_utils_ts_eslint.RuleModule<"amd", [], {
17300
- category?: string;
17301
- recommended?: true;
17302
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17303
- "no-duplicates": _typescript_eslint_utils_ts_eslint.RuleModule<"duplicate", [({
17304
- considerQueryString?: boolean;
17305
- "prefer-inline"?: boolean;
17306
- } | undefined)?], {
17307
- category?: string;
17308
- recommended?: true;
17309
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17310
- first: _typescript_eslint_utils_ts_eslint.RuleModule<"absolute" | "order", [(("absolute-first" | "disable-absolute-first") | undefined)?], {
17311
- category?: string;
17312
- recommended?: true;
17313
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17314
- "max-dependencies": _typescript_eslint_utils_ts_eslint.RuleModule<"max", [({
17315
- ignoreTypeImports?: boolean;
17316
- max?: number;
17317
- } | undefined)?], {
17318
- category?: string;
17319
- recommended?: true;
17320
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17321
- "no-extraneous-dependencies": _typescript_eslint_utils_ts_eslint.RuleModule<"missing" | "pkgNotFound" | "pkgUnparsable" | "devDep" | "optDep", [({
17322
- packageDir?: string | string[];
17323
- devDependencies?: boolean | string[];
17324
- optionalDependencies?: boolean | string[];
17325
- peerDependencies?: boolean | string[];
17326
- bundledDependencies?: boolean | string[];
17327
- includeInternal?: boolean;
17328
- includeTypes?: boolean;
17329
- whitelist?: string[];
17330
- } | undefined)?], {
17331
- category?: string;
17332
- recommended?: true;
17333
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17334
- "no-absolute-path": _typescript_eslint_utils_ts_eslint.RuleModule<"absolute", [(eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions | undefined)?], {
17335
- category?: string;
17336
- recommended?: true;
17337
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17338
- "no-nodejs-modules": _typescript_eslint_utils_ts_eslint.RuleModule<"builtin", [({
17339
- allow?: string[];
17340
- } | undefined)?], {
17341
- category?: string;
17342
- recommended?: true;
17343
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17344
- "no-webpack-loader-syntax": _typescript_eslint_utils_ts_eslint.RuleModule<"unexpected", [], {
17345
- category?: string;
17346
- recommended?: true;
17347
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17348
- order: _typescript_eslint_utils_ts_eslint.RuleModule<"error" | "order" | "noLineWithinGroup" | "noLineBetweenGroups" | "oneLineBetweenGroups" | "oneLineBetweenTheMultiLineImport" | "oneLineBetweenThisMultiLineImport" | "noLineBetweenSingleLineImport", [({
17349
- "newlines-between"?: eslint_plugin_import_x_types_js.NewLinesOptions;
17350
- "newlines-between-types"?: eslint_plugin_import_x_types_js.NewLinesOptions;
17351
- named?: boolean | eslint_plugin_import_x_types_js.NamedOptions;
17352
- alphabetize?: Partial<eslint_plugin_import_x_types_js.AlphabetizeOptions>;
17353
- consolidateIslands?: "inside-groups" | "never";
17354
- distinctGroup?: boolean;
17355
- groups?: ReadonlyArray<eslint_plugin_import_x_types_js.Arrayable<eslint_plugin_import_x_types_js.ImportType>>;
17356
- pathGroupsExcludedImportTypes?: eslint_plugin_import_x_types_js.ImportType[];
17357
- pathGroups?: eslint_plugin_import_x_types_js.PathGroup[];
17358
- sortTypesGroup?: boolean;
17359
- warnOnUnassignedImports?: boolean;
17360
- } | undefined)?], {
17361
- category?: string;
17362
- recommended?: true;
17363
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17364
- "newline-after-import": _typescript_eslint_utils_ts_eslint.RuleModule<"newline", [({
17365
- count?: number;
17366
- exactCount?: boolean;
17367
- considerComments?: boolean;
17368
- } | undefined)?], {
17369
- category?: string;
17370
- recommended?: true;
17371
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17372
- "prefer-default-export": _typescript_eslint_utils_ts_eslint.RuleModule<"any" | "single", [({
17373
- target?: "single" | "any";
17374
- } | undefined)?], {
17375
- category?: string;
17376
- recommended?: true;
17377
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17378
- "no-default-export": _typescript_eslint_utils_ts_eslint.RuleModule<"preferNamed" | "noAliasDefault", [], {
17379
- category?: string;
17380
- recommended?: true;
17381
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17382
- "no-named-export": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [], {
17383
- category?: string;
17384
- recommended?: true;
17385
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17386
- "no-dynamic-require": _typescript_eslint_utils_ts_eslint.RuleModule<"import" | "require", [({
17387
- esmodule?: boolean;
17388
- } | undefined)?], {
17389
- category?: string;
17390
- recommended?: true;
17391
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17392
- unambiguous: _typescript_eslint_utils_ts_eslint.RuleModule<"module", [], {
17393
- category?: string;
17394
- recommended?: true;
17395
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17396
- "no-unassigned-import": _typescript_eslint_utils_ts_eslint.RuleModule<"unassigned", [({
17397
- allow?: string[];
17398
- } | undefined)?], {
17399
- category?: string;
17400
- recommended?: true;
17401
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17402
- "no-useless-path-segments": _typescript_eslint_utils_ts_eslint.RuleModule<"useless", [((eslint_plugin_import_x_utils_module_visitor_js.ModuleOptions & {
17403
- noUselessIndex?: boolean;
17404
- }) | undefined)?], {
17405
- category?: string;
17406
- recommended?: true;
17407
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17408
- "dynamic-import-chunkname": _typescript_eslint_utils_ts_eslint.RuleModule<"leadingComment" | "blockComment" | "paddedSpaces" | "webpackComment" | "chunknameFormat" | "webpackEagerModeNoChunkName" | "webpackRemoveEagerMode" | "webpackRemoveChunkName", [({
17409
- allowEmpty?: boolean;
17410
- importFunctions?: readonly string[];
17411
- webpackChunknameFormat?: string;
17412
- } | undefined)?], {
17413
- category?: string;
17414
- recommended?: true;
17415
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17416
- "no-import-module-exports": _typescript_eslint_utils_ts_eslint.RuleModule<"notAllowed", [({
17417
- exceptions?: string[];
17418
- } | undefined)?], {
17419
- category?: string;
17420
- recommended?: true;
17421
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17422
- "no-empty-named-blocks": _typescript_eslint_utils_ts_eslint.RuleModule<"emptyNamed" | "unused" | "emptyImport", [], {
17423
- category?: string;
17424
- recommended?: true;
17425
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17426
- "exports-last": _typescript_eslint_utils_ts_eslint.RuleModule<"end", [], {
17427
- category?: string;
17428
- recommended?: true;
17429
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17430
- "no-deprecated": _typescript_eslint_utils_ts_eslint.RuleModule<"deprecated" | "deprecatedDesc", [], {
17431
- category?: string;
17432
- recommended?: true;
17433
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17434
- "imports-first": _typescript_eslint_utils_ts_eslint.RuleModule<"absolute" | "order", [(("absolute-first" | "disable-absolute-first") | undefined)?], {
17435
- category?: string;
17436
- recommended?: true;
17437
- }, _typescript_eslint_utils_ts_eslint.RuleListener>;
17357
+ "no-unresolved": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_no_unresolved.MessageId, [(eslint_plugin_import_x_rules_no_unresolved.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17358
+ named: _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_named.MessageId, [(eslint_plugin_import_x_utils.ModuleOptions | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17359
+ default: _typescript_eslint_utils_ts_eslint.RuleModule<"noDefaultExport", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17360
+ namespace: _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_namespace.MessageId, [eslint_plugin_import_x_rules_namespace.Options], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17361
+ "no-namespace": _typescript_eslint_utils_ts_eslint.RuleModule<"noNamespace", [(eslint_plugin_import_x_rules_no_namespace.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17362
+ export: _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_export.MessageId, [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17363
+ "no-mutable-exports": _typescript_eslint_utils_ts_eslint.RuleModule<"noMutable", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17364
+ extensions: _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_extensions.MessageId, eslint_plugin_import_x_rules_extensions.Options, eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17365
+ "no-restricted-paths": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_no_restricted_paths.MessageId, [(eslint_plugin_import_x_rules_no_restricted_paths.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17366
+ "no-internal-modules": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [(eslint_plugin_import_x_rules_no_internal_modules.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17367
+ "group-exports": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_group_exports.MessageId, [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17368
+ "no-relative-packages": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [(eslint_plugin_import_x_utils.ModuleOptions | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17369
+ "no-relative-parent-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [(eslint_plugin_import_x_utils.ModuleOptions | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17370
+ "consistent-type-specifier-style": _typescript_eslint_utils_ts_eslint.RuleModule<"inline" | "topLevel", [(eslint_plugin_import_x_rules_consistent_type_specifier_style.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17371
+ "no-self-import": _typescript_eslint_utils_ts_eslint.RuleModule<"self", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17372
+ "no-cycle": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_no_cycle.MessageId, [(eslint_plugin_import_x_rules_no_cycle.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17373
+ "no-named-default": _typescript_eslint_utils_ts_eslint.RuleModule<"default", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17374
+ "no-named-as-default": _typescript_eslint_utils_ts_eslint.RuleModule<"default", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17375
+ "no-named-as-default-member": _typescript_eslint_utils_ts_eslint.RuleModule<"member", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17376
+ "no-anonymous-default-export": _typescript_eslint_utils_ts_eslint.RuleModule<"assign" | "anonymous", [(eslint_plugin_import_x_rules_no_anonymous_default_export.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17377
+ "no-rename-default": _typescript_eslint_utils_ts_eslint.RuleModule<"renameDefault", [(eslint_plugin_import_x_rules_no_rename_default.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17378
+ "no-unused-modules": _typescript_eslint_utils_ts_eslint.RuleModule<"notFound" | "unused", eslint_plugin_import_x_rules_no_unused_modules.Options[], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17379
+ "no-commonjs": _typescript_eslint_utils_ts_eslint.RuleModule<"import" | "export", [(eslint_plugin_import_x_rules_no_commonjs.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17380
+ "no-amd": _typescript_eslint_utils_ts_eslint.RuleModule<"amd", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17381
+ "no-duplicates": _typescript_eslint_utils_ts_eslint.RuleModule<"duplicate", [(eslint_plugin_import_x_rules_no_duplicates.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17382
+ first: _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_first.MessageId, [(eslint_plugin_import_x_rules_first.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17383
+ "max-dependencies": _typescript_eslint_utils_ts_eslint.RuleModule<"max", [(eslint_plugin_import_x_rules_max_dependencies.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17384
+ "no-extraneous-dependencies": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_no_extraneous_dependencies.MessageId, [(eslint_plugin_import_x_rules_no_extraneous_dependencies.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17385
+ "no-absolute-path": _typescript_eslint_utils_ts_eslint.RuleModule<"absolute", [(eslint_plugin_import_x_utils.ModuleOptions | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17386
+ "no-nodejs-modules": _typescript_eslint_utils_ts_eslint.RuleModule<"builtin", [(eslint_plugin_import_x_rules_no_nodejs_modules.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17387
+ "no-webpack-loader-syntax": _typescript_eslint_utils_ts_eslint.RuleModule<"unexpected", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17388
+ order: _typescript_eslint_utils_ts_eslint.RuleModule<"error" | "order" | "noLineWithinGroup" | "noLineBetweenGroups" | "oneLineBetweenGroups" | "oneLineBetweenTheMultiLineImport" | "oneLineBetweenThisMultiLineImport" | "noLineBetweenSingleLineImport", [(eslint_plugin_import_x_rules_order.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17389
+ "newline-after-import": _typescript_eslint_utils_ts_eslint.RuleModule<"newline", [(eslint_plugin_import_x_rules_newline_after_import.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17390
+ "prefer-default-export": _typescript_eslint_utils_ts_eslint.RuleModule<"any" | "single", [(eslint_plugin_import_x_rules_prefer_default_export.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17391
+ "no-default-export": _typescript_eslint_utils_ts_eslint.RuleModule<"preferNamed" | "noAliasDefault", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17392
+ "no-named-export": _typescript_eslint_utils_ts_eslint.RuleModule<"noAllowed", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17393
+ "no-dynamic-require": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_no_dynamic_require.MessageId, [(eslint_plugin_import_x_rules_no_dynamic_require.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17394
+ unambiguous: _typescript_eslint_utils_ts_eslint.RuleModule<"module", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17395
+ "no-unassigned-import": _typescript_eslint_utils_ts_eslint.RuleModule<"unassigned", [(eslint_plugin_import_x_rules_no_unassigned_import.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17396
+ "no-useless-path-segments": _typescript_eslint_utils_ts_eslint.RuleModule<"useless", [(eslint_plugin_import_x_rules_no_useless_path_segments.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17397
+ "dynamic-import-chunkname": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_dynamic_import_chunkname.MessageId, [(eslint_plugin_import_x_rules_dynamic_import_chunkname.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17398
+ "no-import-module-exports": _typescript_eslint_utils_ts_eslint.RuleModule<"notAllowed", [(eslint_plugin_import_x_rules_no_import_module_exports.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17399
+ "no-empty-named-blocks": _typescript_eslint_utils_ts_eslint.RuleModule<"emptyNamed" | "unused" | "emptyImport", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17400
+ "exports-last": _typescript_eslint_utils_ts_eslint.RuleModule<"end", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17401
+ "no-deprecated": _typescript_eslint_utils_ts_eslint.RuleModule<"deprecated" | "deprecatedDesc", [], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17402
+ "imports-first": _typescript_eslint_utils_ts_eslint.RuleModule<eslint_plugin_import_x_rules_first.MessageId, [(eslint_plugin_import_x_rules_first.Options | undefined)?], eslint_plugin_import_x_utils.ImportXPluginDocs, _typescript_eslint_utils_ts_eslint.RuleListener>;
17438
17403
  };
17439
- importXResolverCompat: typeof eslint_plugin_import_x_utils_resolve_js.importXResolverCompat;
17440
- createNodeResolver: typeof eslint_plugin_import_x_node_resolver_js.createNodeResolver;
17404
+ importXResolverCompat: typeof eslint_plugin_import_x.importXResolverCompat;
17405
+ createNodeResolver: typeof eslint_plugin_import_x.createNodeResolver;
17441
17406
  };
17442
17407
  readonly n: eslint.ESLint.Plugin & {
17443
17408
  configs: eslint_plugin_n.Configs;
@@ -17664,10 +17629,7 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
17664
17629
  "unicorn/no-array-reduce": "off";
17665
17630
  "unicorn/no-null": "off";
17666
17631
  "unicorn/no-process-exit": "off";
17667
- "unicorn/no-useless-undefined": ["error", {
17668
- checkArguments: false;
17669
- checkArrowFunctionBody: false;
17670
- }];
17632
+ "unicorn/no-useless-undefined": "off";
17671
17633
  "unicorn/prefer-node-protocol": "off";
17672
17634
  "unicorn/prevent-abbreviations": "off";
17673
17635
  };
@@ -19726,6 +19688,11 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
19726
19688
  "playwright/no-useless-not": "error";
19727
19689
  "playwright/no-wait-for-selector": "error";
19728
19690
  "playwright/no-wait-for-timeout": "error";
19691
+ "playwright/valid-title": ["error", {
19692
+ mustMatch: {
19693
+ it: string;
19694
+ };
19695
+ }];
19729
19696
  };
19730
19697
  ignores?: string[];
19731
19698
  language?: string;
@@ -19746,6 +19713,7 @@ declare const defineConfig: ({ astro, autoDetect, ignores, jest, nextjs, overrid
19746
19713
  name: string;
19747
19714
  rules: {
19748
19715
  "import-x/no-anonymous-default-export": "off";
19716
+ "storybook/meta-satisfies-type": "error";
19749
19717
  "unicorn/no-anonymous-default-export": "off";
19750
19718
  };
19751
19719
  plugins?: undefined;