@kitschpatrol/eslint-config 6.0.2 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -486,6 +486,7 @@ interface RuleOptions {
486
486
  /**
487
487
  * disallow unused `eslint-disable` comments
488
488
  * @see https://eslint-community.github.io/eslint-plugin-eslint-comments/rules/no-unused-disable.html
489
+ * @deprecated
489
490
  */
490
491
  'eslint-comments/no-unused-disable'?: Linter.RuleEntry<[]>;
491
492
  /**
@@ -807,6 +808,11 @@ interface RuleOptions {
807
808
  * @see https://html-eslint.org/docs/rules/require-closing-tags
808
809
  */
809
810
  'html/require-closing-tags'?: Linter.RuleEntry<HtmlRequireClosingTags>;
811
+ /**
812
+ * Require `<details>` elements to have a `<summary>` as their first child element.
813
+ * @see https://html-eslint.org/docs/rules/require-details-summary
814
+ */
815
+ 'html/require-details-summary'?: Linter.RuleEntry<[]>;
810
816
  /**
811
817
  * Require `<!DOCTYPE HTML>` in HTML
812
818
  * @see https://html-eslint.org/docs/rules/require-doctype
@@ -911,238 +917,238 @@ interface RuleOptions {
911
917
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>;
912
918
  /**
913
919
  * Enforce or ban the use of inline type-only markers for named imports.
914
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/consistent-type-specifier-style.md
920
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/consistent-type-specifier-style.md
915
921
  */
916
922
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>;
917
923
  /**
918
924
  * Ensure a default export is present, given a default import.
919
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/default.md
925
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/default.md
920
926
  */
921
927
  'import/default'?: Linter.RuleEntry<[]>;
922
928
  /**
923
929
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
924
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/dynamic-import-chunkname.md
930
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/dynamic-import-chunkname.md
925
931
  */
926
932
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>;
927
933
  /**
928
934
  * Forbid any invalid exports, i.e. re-export of the same name.
929
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/export.md
935
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/export.md
930
936
  */
931
937
  'import/export'?: Linter.RuleEntry<[]>;
932
938
  /**
933
939
  * Ensure all exports appear after other statements.
934
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/exports-last.md
940
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/exports-last.md
935
941
  */
936
942
  'import/exports-last'?: Linter.RuleEntry<[]>;
937
943
  /**
938
944
  * Ensure consistent use of file extension within the import path.
939
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/extensions.md
945
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/extensions.md
940
946
  */
941
947
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>;
942
948
  /**
943
949
  * Ensure all imports appear before other statements.
944
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/first.md
950
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/first.md
945
951
  */
946
952
  'import/first'?: Linter.RuleEntry<ImportFirst>;
947
953
  /**
948
954
  * Prefer named exports to be grouped together in a single export declaration.
949
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/group-exports.md
955
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/group-exports.md
950
956
  */
951
957
  'import/group-exports'?: Linter.RuleEntry<[]>;
952
958
  /**
953
959
  * Replaced by `import-x/first`.
954
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/imports-first.md
960
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/imports-first.md
955
961
  * @deprecated
956
962
  */
957
963
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>;
958
964
  /**
959
965
  * Enforce the maximum number of dependencies a module can have.
960
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/max-dependencies.md
966
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/max-dependencies.md
961
967
  */
962
968
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>;
963
969
  /**
964
970
  * Ensure named imports correspond to a named export in the remote file.
965
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/named.md
971
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/named.md
966
972
  */
967
973
  'import/named'?: Linter.RuleEntry<ImportNamed>;
968
974
  /**
969
975
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
970
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/namespace.md
976
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/namespace.md
971
977
  */
972
978
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>;
973
979
  /**
974
980
  * Enforce a newline after import statements.
975
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/newline-after-import.md
981
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/newline-after-import.md
976
982
  */
977
983
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>;
978
984
  /**
979
985
  * Forbid import of modules using absolute paths.
980
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-absolute-path.md
986
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-absolute-path.md
981
987
  */
982
988
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>;
983
989
  /**
984
990
  * Forbid AMD `require` and `define` calls.
985
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-amd.md
991
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-amd.md
986
992
  */
987
993
  'import/no-amd'?: Linter.RuleEntry<[]>;
988
994
  /**
989
995
  * Forbid anonymous values as default exports.
990
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-anonymous-default-export.md
996
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-anonymous-default-export.md
991
997
  */
992
998
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>;
993
999
  /**
994
1000
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
995
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-commonjs.md
1001
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-commonjs.md
996
1002
  */
997
1003
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>;
998
1004
  /**
999
1005
  * Forbid a module from importing a module with a dependency path back to itself.
1000
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-cycle.md
1006
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-cycle.md
1001
1007
  */
1002
1008
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>;
1003
1009
  /**
1004
1010
  * Forbid default exports.
1005
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-default-export.md
1011
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-default-export.md
1006
1012
  */
1007
1013
  'import/no-default-export'?: Linter.RuleEntry<[]>;
1008
1014
  /**
1009
1015
  * Forbid imported names marked with `@deprecated` documentation tag.
1010
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-deprecated.md
1016
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-deprecated.md
1011
1017
  */
1012
1018
  'import/no-deprecated'?: Linter.RuleEntry<[]>;
1013
1019
  /**
1014
1020
  * Forbid repeated import of the same module in multiple places.
1015
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-duplicates.md
1021
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-duplicates.md
1016
1022
  */
1017
1023
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>;
1018
1024
  /**
1019
1025
  * Forbid `require()` calls with expressions.
1020
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-dynamic-require.md
1026
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-dynamic-require.md
1021
1027
  */
1022
1028
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>;
1023
1029
  /**
1024
1030
  * Forbid empty named import blocks.
1025
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-empty-named-blocks.md
1031
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-empty-named-blocks.md
1026
1032
  */
1027
1033
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>;
1028
1034
  /**
1029
1035
  * Forbid the use of extraneous packages.
1030
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-extraneous-dependencies.md
1036
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-extraneous-dependencies.md
1031
1037
  */
1032
1038
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>;
1033
1039
  /**
1034
1040
  * Forbid import statements with CommonJS module.exports.
1035
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-import-module-exports.md
1041
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-import-module-exports.md
1036
1042
  */
1037
1043
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>;
1038
1044
  /**
1039
1045
  * Forbid importing the submodules of other modules.
1040
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-internal-modules.md
1046
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-internal-modules.md
1041
1047
  */
1042
1048
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>;
1043
1049
  /**
1044
1050
  * Forbid the use of mutable exports with `var` or `let`.
1045
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-mutable-exports.md
1051
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-mutable-exports.md
1046
1052
  */
1047
1053
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>;
1048
1054
  /**
1049
1055
  * Forbid use of exported name as identifier of default export.
1050
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-named-as-default.md
1056
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-as-default.md
1051
1057
  */
1052
1058
  'import/no-named-as-default'?: Linter.RuleEntry<[]>;
1053
1059
  /**
1054
1060
  * Forbid use of exported name as property of default export.
1055
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-named-as-default-member.md
1061
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-as-default-member.md
1056
1062
  */
1057
1063
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>;
1058
1064
  /**
1059
1065
  * Forbid named default exports.
1060
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-named-default.md
1066
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-default.md
1061
1067
  */
1062
1068
  'import/no-named-default'?: Linter.RuleEntry<[]>;
1063
1069
  /**
1064
1070
  * Forbid named exports.
1065
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-named-export.md
1071
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-named-export.md
1066
1072
  */
1067
1073
  'import/no-named-export'?: Linter.RuleEntry<[]>;
1068
1074
  /**
1069
1075
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
1070
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-namespace.md
1076
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-namespace.md
1071
1077
  */
1072
1078
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>;
1073
1079
  /**
1074
1080
  * Forbid Node.js builtin modules.
1075
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-nodejs-modules.md
1081
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-nodejs-modules.md
1076
1082
  */
1077
1083
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>;
1078
1084
  /**
1079
1085
  * Forbid importing packages through relative paths.
1080
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-relative-packages.md
1086
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-relative-packages.md
1081
1087
  */
1082
1088
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>;
1083
1089
  /**
1084
1090
  * Forbid importing modules from parent directories.
1085
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-relative-parent-imports.md
1091
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-relative-parent-imports.md
1086
1092
  */
1087
1093
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>;
1088
1094
  /**
1089
1095
  * Forbid importing a default export by a different name.
1090
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-rename-default.md
1096
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-rename-default.md
1091
1097
  */
1092
1098
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>;
1093
1099
  /**
1094
1100
  * Enforce which files can be imported in a given folder.
1095
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-restricted-paths.md
1101
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-restricted-paths.md
1096
1102
  */
1097
1103
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>;
1098
1104
  /**
1099
1105
  * Forbid a module from importing itself.
1100
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-self-import.md
1106
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-self-import.md
1101
1107
  */
1102
1108
  'import/no-self-import'?: Linter.RuleEntry<[]>;
1103
1109
  /**
1104
1110
  * Forbid unassigned imports.
1105
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-unassigned-import.md
1111
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-unassigned-import.md
1106
1112
  */
1107
1113
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>;
1108
1114
  /**
1109
1115
  * Ensure imports point to a file/module that can be resolved.
1110
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-unresolved.md
1116
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-unresolved.md
1111
1117
  */
1112
1118
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>;
1113
1119
  /**
1114
1120
  * Forbid modules without exports, or exports without matching import in another module.
1115
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-unused-modules.md
1121
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-unused-modules.md
1116
1122
  */
1117
1123
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>;
1118
1124
  /**
1119
1125
  * Forbid unnecessary path segments in import and require statements.
1120
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-useless-path-segments.md
1126
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-useless-path-segments.md
1121
1127
  */
1122
1128
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>;
1123
1129
  /**
1124
1130
  * Forbid webpack loader syntax in imports.
1125
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/no-webpack-loader-syntax.md
1131
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/no-webpack-loader-syntax.md
1126
1132
  */
1127
1133
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>;
1128
1134
  /**
1129
1135
  * Enforce a convention in module import order.
1130
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/order.md
1136
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/order.md
1131
1137
  */
1132
1138
  'import/order'?: Linter.RuleEntry<ImportOrder>;
1133
1139
  /**
1134
1140
  * Prefer a default export if module exports a single name or multiple names.
1135
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/prefer-default-export.md
1141
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/prefer-default-export.md
1136
1142
  */
1137
1143
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>;
1138
1144
  /**
1139
1145
  * Enforce using namespace imports for specific modules, like `react`/`react-dom`, etc.
1140
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/prefer-namespace-import.md
1146
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/prefer-namespace-import.md
1141
1147
  */
1142
1148
  'import/prefer-namespace-import'?: Linter.RuleEntry<ImportPreferNamespaceImport>;
1143
1149
  /**
1144
1150
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
1145
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.1/docs/rules/unambiguous.md
1151
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.16.2/docs/rules/unambiguous.md
1146
1152
  */
1147
1153
  'import/unambiguous'?: Linter.RuleEntry<[]>;
1148
1154
  /**
@@ -1539,343 +1545,428 @@ interface RuleOptions {
1539
1545
  'jsdoc/valid-types'?: Linter.RuleEntry<JsdocValidTypes>;
1540
1546
  /**
1541
1547
  * Enforce that names for bin properties are in kebab case.
1542
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/bin-name-casing.md
1548
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/bin-name-casing.md
1543
1549
  */
1544
1550
  'json-package/bin-name-casing'?: Linter.RuleEntry<[]>;
1545
1551
  /**
1546
1552
  * Enforce consistent format for the exports field (implicit or explicit subpaths).
1547
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/exports-subpaths-style.md
1553
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/exports-subpaths-style.md
1548
1554
  */
1549
1555
  'json-package/exports-subpaths-style'?: Linter.RuleEntry<JsonPackageExportsSubpathsStyle>;
1550
1556
  /**
1551
1557
  * Reports on unnecessary empty arrays and objects.
1552
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/no-empty-fields.md
1558
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-empty-fields.md
1553
1559
  */
1554
1560
  'json-package/no-empty-fields'?: Linter.RuleEntry<JsonPackageNoEmptyFields>;
1555
1561
  /**
1556
1562
  * Prevents adding unnecessary / redundant files.
1557
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-files.md
1563
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-files.md
1558
1564
  */
1559
1565
  'json-package/no-redundant-files'?: Linter.RuleEntry<[]>;
1560
1566
  /**
1561
1567
  * Warns when publishConfig.access is used in unscoped packages.
1562
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-publishConfig.md
1568
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-publishConfig.md
1563
1569
  */
1564
1570
  'json-package/no-redundant-publishConfig'?: Linter.RuleEntry<[]>;
1565
1571
  /**
1566
1572
  * Package properties should be declared in standard order
1567
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/order-properties.md
1573
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/order-properties.md
1568
1574
  */
1569
1575
  'json-package/order-properties'?: Linter.RuleEntry<JsonPackageOrderProperties>;
1570
1576
  /**
1571
1577
  * Enforce either object or shorthand declaration for repository.
1572
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/repository-shorthand.md
1578
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/repository-shorthand.md
1573
1579
  */
1574
1580
  'json-package/repository-shorthand'?: Linter.RuleEntry<JsonPackageRepositoryShorthand>;
1575
1581
  /**
1576
1582
  * Ensures that proper attribution is included, requiring that either `author` or `contributors` is defined, and that if `contributors` is present, it should include at least one contributor.
1577
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-attribution.md
1583
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-attribution.md
1578
1584
  */
1579
1585
  'json-package/require-attribution'?: Linter.RuleEntry<JsonPackageRequireAttribution>;
1580
1586
  /**
1581
1587
  * Requires the `author` property to be present.
1582
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-author.md
1588
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-author.md
1583
1589
  */
1584
1590
  'json-package/require-author'?: Linter.RuleEntry<JsonPackageRequireAuthor>;
1591
+ /**
1592
+ * Requires the `bin` property to be present.
1593
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bin.md
1594
+ */
1595
+ 'json-package/require-bin'?: Linter.RuleEntry<JsonPackageRequireBin>;
1585
1596
  /**
1586
1597
  * Requires the `bugs` property to be present.
1587
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bugs.md
1598
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bugs.md
1588
1599
  */
1589
1600
  'json-package/require-bugs'?: Linter.RuleEntry<JsonPackageRequireBugs>;
1590
1601
  /**
1591
1602
  * Requires the `bundleDependencies` property to be present.
1592
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bundleDependencies.md
1603
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bundleDependencies.md
1593
1604
  */
1594
1605
  'json-package/require-bundleDependencies'?: Linter.RuleEntry<JsonPackageRequireBundleDependencies>;
1606
+ /**
1607
+ * Requires the `contributors` property to be present.
1608
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-contributors.md
1609
+ */
1610
+ 'json-package/require-contributors'?: Linter.RuleEntry<JsonPackageRequireContributors>;
1611
+ /**
1612
+ * Requires the `cpu` property to be present.
1613
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-cpu.md
1614
+ */
1615
+ 'json-package/require-cpu'?: Linter.RuleEntry<JsonPackageRequireCpu>;
1595
1616
  /**
1596
1617
  * Requires the `dependencies` property to be present.
1597
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-dependencies.md
1618
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-dependencies.md
1598
1619
  */
1599
1620
  'json-package/require-dependencies'?: Linter.RuleEntry<JsonPackageRequireDependencies>;
1600
1621
  /**
1601
1622
  * Requires the `description` property to be present.
1602
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-description.md
1623
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-description.md
1603
1624
  */
1604
1625
  'json-package/require-description'?: Linter.RuleEntry<JsonPackageRequireDescription>;
1605
1626
  /**
1606
1627
  * Requires the `devDependencies` property to be present.
1607
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-devDependencies.md
1628
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-devDependencies.md
1608
1629
  */
1609
1630
  'json-package/require-devDependencies'?: Linter.RuleEntry<JsonPackageRequireDevDependencies>;
1631
+ /**
1632
+ * Requires the `devEngines` property to be present.
1633
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-devEngines.md
1634
+ */
1635
+ 'json-package/require-devEngines'?: Linter.RuleEntry<JsonPackageRequireDevEngines>;
1636
+ /**
1637
+ * Requires the `directories` property to be present.
1638
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-directories.md
1639
+ */
1640
+ 'json-package/require-directories'?: Linter.RuleEntry<JsonPackageRequireDirectories>;
1610
1641
  /**
1611
1642
  * Requires the `engines` property to be present.
1612
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-engines.md
1643
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-engines.md
1613
1644
  */
1614
1645
  'json-package/require-engines'?: Linter.RuleEntry<JsonPackageRequireEngines>;
1615
1646
  /**
1616
1647
  * Requires the `exports` property to be present.
1617
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-exports.md
1648
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-exports.md
1618
1649
  */
1619
1650
  'json-package/require-exports'?: Linter.RuleEntry<JsonPackageRequireExports>;
1620
1651
  /**
1621
1652
  * Requires the `files` property to be present.
1622
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-files.md
1653
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-files.md
1623
1654
  */
1624
1655
  'json-package/require-files'?: Linter.RuleEntry<JsonPackageRequireFiles>;
1656
+ /**
1657
+ * Requires the `funding` property to be present.
1658
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-funding.md
1659
+ */
1660
+ 'json-package/require-funding'?: Linter.RuleEntry<JsonPackageRequireFunding>;
1625
1661
  /**
1626
1662
  * Requires the `homepage` property to be present.
1627
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-homepage.md
1663
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-homepage.md
1628
1664
  */
1629
1665
  'json-package/require-homepage'?: Linter.RuleEntry<JsonPackageRequireHomepage>;
1630
1666
  /**
1631
1667
  * Requires the `keywords` property to be present.
1632
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-keywords.md
1668
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-keywords.md
1633
1669
  */
1634
1670
  'json-package/require-keywords'?: Linter.RuleEntry<JsonPackageRequireKeywords>;
1635
1671
  /**
1636
1672
  * Requires the `license` property to be present.
1637
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-license.md
1673
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-license.md
1638
1674
  */
1639
1675
  'json-package/require-license'?: Linter.RuleEntry<JsonPackageRequireLicense>;
1676
+ /**
1677
+ * Requires the `main` property to be present.
1678
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-main.md
1679
+ */
1680
+ 'json-package/require-main'?: Linter.RuleEntry<JsonPackageRequireMain>;
1681
+ /**
1682
+ * Requires the `man` property to be present.
1683
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-man.md
1684
+ */
1685
+ 'json-package/require-man'?: Linter.RuleEntry<JsonPackageRequireMan>;
1686
+ /**
1687
+ * Requires the `module` property to be present.
1688
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-module.md
1689
+ */
1690
+ 'json-package/require-module'?: Linter.RuleEntry<JsonPackageRequireModule>;
1640
1691
  /**
1641
1692
  * Requires the `name` property to be present.
1642
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-name.md
1693
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-name.md
1643
1694
  */
1644
1695
  'json-package/require-name'?: Linter.RuleEntry<JsonPackageRequireName>;
1645
1696
  /**
1646
1697
  * Requires the `optionalDependencies` property to be present.
1647
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-optionalDependencies.md
1698
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-optionalDependencies.md
1648
1699
  */
1649
1700
  'json-package/require-optionalDependencies'?: Linter.RuleEntry<JsonPackageRequireOptionalDependencies>;
1701
+ /**
1702
+ * Requires the `os` property to be present.
1703
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-os.md
1704
+ */
1705
+ 'json-package/require-os'?: Linter.RuleEntry<JsonPackageRequireOs>;
1706
+ /**
1707
+ * Requires the `packageManager` property to be present.
1708
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-packageManager.md
1709
+ */
1710
+ 'json-package/require-packageManager'?: Linter.RuleEntry<JsonPackageRequirePackageManager>;
1650
1711
  /**
1651
1712
  * Requires the `peerDependencies` property to be present.
1652
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-peerDependencies.md
1713
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-peerDependencies.md
1653
1714
  */
1654
1715
  'json-package/require-peerDependencies'?: Linter.RuleEntry<JsonPackageRequirePeerDependencies>;
1716
+ /**
1717
+ * Requires the `private` property to be present.
1718
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-private.md
1719
+ */
1720
+ 'json-package/require-private'?: Linter.RuleEntry<[]>;
1721
+ /**
1722
+ * Requires the `publishConfig` property to be present.
1723
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-publishConfig.md
1724
+ */
1725
+ 'json-package/require-publishConfig'?: Linter.RuleEntry<JsonPackageRequirePublishConfig>;
1655
1726
  /**
1656
1727
  * Requires the `repository` property to be present.
1657
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-repository.md
1728
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-repository.md
1658
1729
  */
1659
1730
  'json-package/require-repository'?: Linter.RuleEntry<JsonPackageRequireRepository>;
1660
1731
  /**
1661
1732
  * Requires the `scripts` property to be present.
1662
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-scripts.md
1733
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-scripts.md
1663
1734
  */
1664
1735
  'json-package/require-scripts'?: Linter.RuleEntry<JsonPackageRequireScripts>;
1665
1736
  /**
1666
1737
  * Requires the `sideEffects` property to be present.
1667
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-sideEffects.md
1738
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-sideEffects.md
1668
1739
  */
1669
1740
  'json-package/require-sideEffects'?: Linter.RuleEntry<JsonPackageRequireSideEffects>;
1670
1741
  /**
1671
1742
  * Requires the `type` property to be present.
1672
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-type.md
1743
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-type.md
1673
1744
  */
1674
1745
  'json-package/require-type'?: Linter.RuleEntry<JsonPackageRequireType>;
1675
1746
  /**
1676
1747
  * Requires the `types` property to be present.
1677
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-types.md
1748
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-types.md
1678
1749
  */
1679
1750
  'json-package/require-types'?: Linter.RuleEntry<JsonPackageRequireTypes>;
1680
1751
  /**
1681
1752
  * Requires the `version` property to be present.
1682
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/require-version.md
1753
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-version.md
1683
1754
  */
1684
1755
  'json-package/require-version'?: Linter.RuleEntry<JsonPackageRequireVersion>;
1685
1756
  /**
1686
1757
  * Restricts the range of dependencies to allow or disallow specific types of ranges.
1687
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-dependency-ranges.md
1758
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-dependency-ranges.md
1688
1759
  */
1689
1760
  'json-package/restrict-dependency-ranges'?: Linter.RuleEntry<JsonPackageRestrictDependencyRanges>;
1690
1761
  /**
1691
1762
  * Disallows unnecessary properties in private packages.
1692
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-private-properties.md
1763
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-private-properties.md
1693
1764
  */
1694
1765
  'json-package/restrict-private-properties'?: Linter.RuleEntry<JsonPackageRestrictPrivateProperties>;
1695
1766
  /**
1696
1767
  * Enforce that names for `scripts` are in kebab case (optionally separated by colons).
1697
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/scripts-name-casing.md
1768
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/scripts-name-casing.md
1698
1769
  */
1699
1770
  'json-package/scripts-name-casing'?: Linter.RuleEntry<[]>;
1700
1771
  /**
1701
1772
  * Selected collections must be in a consistent order (lexicographical for most; lifecycle-aware for scripts).
1702
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/sort-collections.md
1773
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/sort-collections.md
1703
1774
  */
1704
1775
  'json-package/sort-collections'?: Linter.RuleEntry<JsonPackageSortCollections>;
1705
1776
  /**
1706
1777
  * Requires that all peer dependencies are also declared as dev dependencies
1707
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/specify-peers-locally.md
1778
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/specify-peers-locally.md
1708
1779
  */
1709
1780
  'json-package/specify-peers-locally'?: Linter.RuleEntry<[]>;
1710
1781
  /**
1711
1782
  * Checks a dependency isn't specified more than once (i.e. in `dependencies` and `devDependencies`)
1712
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/unique-dependencies.md
1783
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/unique-dependencies.md
1713
1784
  */
1714
1785
  'json-package/unique-dependencies'?: Linter.RuleEntry<[]>;
1715
1786
  /**
1716
1787
  * Enforce that the `author` property is valid.
1717
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-author.md
1788
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-author.md
1718
1789
  */
1719
1790
  'json-package/valid-author'?: Linter.RuleEntry<[]>;
1720
1791
  /**
1721
1792
  * Enforce that the `bin` property is valid.
1722
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bin.md
1793
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bin.md
1723
1794
  */
1724
1795
  'json-package/valid-bin'?: Linter.RuleEntry<[]>;
1796
+ /**
1797
+ * Enforce that the `bugs` property is valid.
1798
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bugs.md
1799
+ */
1800
+ 'json-package/valid-bugs'?: Linter.RuleEntry<[]>;
1725
1801
  /**
1726
1802
  * Enforce that the `bundleDependencies` (also: `bundledDependencies`) property is valid.
1727
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bundleDependencies.md
1803
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bundleDependencies.md
1728
1804
  */
1729
1805
  'json-package/valid-bundleDependencies'?: Linter.RuleEntry<[]>;
1730
1806
  /**
1731
1807
  * Enforce that the `config` property is valid.
1732
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-config.md
1808
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-config.md
1733
1809
  */
1734
1810
  'json-package/valid-config'?: Linter.RuleEntry<[]>;
1735
1811
  /**
1736
1812
  * Enforce that the `contributors` property is valid.
1737
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-contributors.md
1813
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-contributors.md
1738
1814
  */
1739
1815
  'json-package/valid-contributors'?: Linter.RuleEntry<[]>;
1740
1816
  /**
1741
1817
  * Enforce that the `cpu` property is valid.
1742
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-cpu.md
1818
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-cpu.md
1743
1819
  */
1744
1820
  'json-package/valid-cpu'?: Linter.RuleEntry<[]>;
1745
1821
  /**
1746
1822
  * Enforce that the `dependencies` property is valid.
1747
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-dependencies.md
1823
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-dependencies.md
1748
1824
  */
1749
1825
  'json-package/valid-dependencies'?: Linter.RuleEntry<[]>;
1750
1826
  /**
1751
1827
  * Enforce that the `description` property is valid.
1752
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-description.md
1828
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-description.md
1753
1829
  */
1754
1830
  'json-package/valid-description'?: Linter.RuleEntry<[]>;
1755
1831
  /**
1756
1832
  * Enforce that the `devDependencies` property is valid.
1757
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-devDependencies.md
1833
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-devDependencies.md
1758
1834
  */
1759
1835
  'json-package/valid-devDependencies'?: Linter.RuleEntry<[]>;
1836
+ /**
1837
+ * Enforce that the `devEngines` property is valid.
1838
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-devEngines.md
1839
+ */
1840
+ 'json-package/valid-devEngines'?: Linter.RuleEntry<[]>;
1760
1841
  /**
1761
1842
  * Enforce that the `directories` property is valid.
1762
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-directories.md
1843
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-directories.md
1763
1844
  */
1764
1845
  'json-package/valid-directories'?: Linter.RuleEntry<[]>;
1765
1846
  /**
1766
1847
  * Enforce that the `engines` property is valid.
1767
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-engines.md
1848
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-engines.md
1768
1849
  */
1769
1850
  'json-package/valid-engines'?: Linter.RuleEntry<[]>;
1770
1851
  /**
1771
1852
  * Enforce that the `exports` property is valid.
1772
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-exports.md
1853
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-exports.md
1773
1854
  */
1774
1855
  'json-package/valid-exports'?: Linter.RuleEntry<[]>;
1775
1856
  /**
1776
1857
  * Enforce that the `files` property is valid.
1777
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-files.md
1858
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-files.md
1778
1859
  */
1779
1860
  'json-package/valid-files'?: Linter.RuleEntry<[]>;
1861
+ /**
1862
+ * Enforce that the `funding` property is valid.
1863
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-funding.md
1864
+ */
1865
+ 'json-package/valid-funding'?: Linter.RuleEntry<[]>;
1780
1866
  /**
1781
1867
  * Enforce that the `homepage` property is valid.
1782
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-homepage.md
1868
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-homepage.md
1783
1869
  */
1784
1870
  'json-package/valid-homepage'?: Linter.RuleEntry<[]>;
1785
1871
  /**
1786
1872
  * Enforce that the `keywords` property is valid.
1787
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-keywords.md
1873
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-keywords.md
1788
1874
  */
1789
1875
  'json-package/valid-keywords'?: Linter.RuleEntry<[]>;
1790
1876
  /**
1791
1877
  * Enforce that the `license` property is valid.
1792
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-license.md
1878
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-license.md
1793
1879
  */
1794
1880
  'json-package/valid-license'?: Linter.RuleEntry<[]>;
1795
1881
  /**
1796
1882
  * Enforce that the `main` property is valid.
1797
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-main.md
1883
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-main.md
1798
1884
  */
1799
1885
  'json-package/valid-main'?: Linter.RuleEntry<[]>;
1800
1886
  /**
1801
1887
  * Enforce that the `man` property is valid.
1802
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-man.md
1888
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-man.md
1803
1889
  */
1804
1890
  'json-package/valid-man'?: Linter.RuleEntry<[]>;
1805
1891
  /**
1806
1892
  * Enforce that the `module` property is valid.
1807
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-module.md
1893
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-module.md
1808
1894
  */
1809
1895
  'json-package/valid-module'?: Linter.RuleEntry<[]>;
1810
1896
  /**
1811
1897
  * Enforce that package names are valid npm package names
1812
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-name.md
1898
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-name.md
1813
1899
  */
1814
1900
  'json-package/valid-name'?: Linter.RuleEntry<[]>;
1815
1901
  /**
1816
1902
  * Enforce that the `optionalDependencies` property is valid.
1817
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-optionalDependencies.md
1903
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-optionalDependencies.md
1818
1904
  */
1819
1905
  'json-package/valid-optionalDependencies'?: Linter.RuleEntry<[]>;
1820
1906
  /**
1821
1907
  * Enforce that the `os` property is valid.
1822
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-os.md
1908
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-os.md
1823
1909
  */
1824
1910
  'json-package/valid-os'?: Linter.RuleEntry<[]>;
1825
1911
  /**
1826
1912
  * Enforce that package.json has all properties required by the npm spec
1827
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-package-definition.md
1913
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-package-definition.md
1828
1914
  * @deprecated
1829
1915
  */
1830
1916
  'json-package/valid-package-definition'?: Linter.RuleEntry<JsonPackageValidPackageDefinition>;
1917
+ /**
1918
+ * Enforce that the `packageManager` property is valid.
1919
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-packageManager.md
1920
+ */
1921
+ 'json-package/valid-packageManager'?: Linter.RuleEntry<[]>;
1831
1922
  /**
1832
1923
  * Enforce that the `peerDependencies` property is valid.
1833
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-peerDependencies.md
1924
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-peerDependencies.md
1834
1925
  */
1835
1926
  'json-package/valid-peerDependencies'?: Linter.RuleEntry<[]>;
1836
1927
  /**
1837
1928
  * Enforce that the `private` property is valid.
1838
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-private.md
1929
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-private.md
1839
1930
  */
1840
1931
  'json-package/valid-private'?: Linter.RuleEntry<[]>;
1841
1932
  /**
1842
1933
  * Enforce that the `publishConfig` property is valid.
1843
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-publishConfig.md
1934
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-publishConfig.md
1844
1935
  */
1845
1936
  'json-package/valid-publishConfig'?: Linter.RuleEntry<[]>;
1846
1937
  /**
1847
1938
  * Enforce that the `repository` property is valid.
1848
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository.md
1939
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository.md
1849
1940
  */
1850
1941
  'json-package/valid-repository'?: Linter.RuleEntry<[]>;
1851
1942
  /**
1852
1943
  * Enforce that if repository directory is specified, it matches the path to the package.json file
1853
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository-directory.md
1944
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository-directory.md
1854
1945
  */
1855
1946
  'json-package/valid-repository-directory'?: Linter.RuleEntry<[]>;
1856
1947
  /**
1857
1948
  * Enforce that the `scripts` property is valid.
1858
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-scripts.md
1949
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-scripts.md
1859
1950
  */
1860
1951
  'json-package/valid-scripts'?: Linter.RuleEntry<[]>;
1861
1952
  /**
1862
1953
  * Enforce that the `sideEffects` property is valid.
1863
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-sideEffects.md
1954
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-sideEffects.md
1864
1955
  */
1865
1956
  'json-package/valid-sideEffects'?: Linter.RuleEntry<[]>;
1866
1957
  /**
1867
1958
  * Enforce that the `type` property is valid.
1868
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-type.md
1959
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-type.md
1869
1960
  */
1870
1961
  'json-package/valid-type'?: Linter.RuleEntry<[]>;
1871
1962
  /**
1872
1963
  * Enforce that package versions are valid semver specifiers
1873
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-version.md
1964
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-version.md
1874
1965
  */
1875
1966
  'json-package/valid-version'?: Linter.RuleEntry<[]>;
1876
1967
  /**
1877
1968
  * Enforce that the `workspaces` property is valid.
1878
- * @see https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-workspaces.md
1969
+ * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-workspaces.md
1879
1970
  */
1880
1971
  'json-package/valid-workspaces'?: Linter.RuleEntry<[]>;
1881
1972
  /**
@@ -4796,6 +4887,11 @@ interface RuleOptions {
4796
4887
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/max-attributes-per-line/
4797
4888
  */
4798
4889
  'svelte/max-attributes-per-line'?: Linter.RuleEntry<SvelteMaxAttributesPerLine>;
4890
+ /**
4891
+ * enforce maximum number of lines in svelte component blocks
4892
+ * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/max-lines-per-block/
4893
+ */
4894
+ 'svelte/max-lines-per-block'?: Linter.RuleEntry<SvelteMaxLinesPerBlock>;
4799
4895
  /**
4800
4896
  * enforce unified spacing in mustache
4801
4897
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/mustache-spacing/
@@ -4895,7 +4991,7 @@ interface RuleOptions {
4895
4991
  */
4896
4992
  'svelte/no-navigation-without-base'?: Linter.RuleEntry<SvelteNoNavigationWithoutBase>;
4897
4993
  /**
4898
- * disallow using navigation (links, goto, pushState, replaceState) without a resolve()
4994
+ * disallow internal navigation (links, `goto()`, `pushState()`, `replaceState()`) without a `resolve()`
4899
4995
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-navigation-without-resolve/
4900
4996
  */
4901
4997
  'svelte/no-navigation-without-resolve'?: Linter.RuleEntry<SvelteNoNavigationWithoutResolve>;
@@ -5523,6 +5619,11 @@ interface RuleOptions {
5523
5619
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-top-level-describe.md
5524
5620
  */
5525
5621
  'test/require-top-level-describe'?: Linter.RuleEntry<TestRequireTopLevelDescribe>;
5622
+ /**
5623
+ * enforce unbound methods are called with their expected scope
5624
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/unbound-method.md
5625
+ */
5626
+ 'test/unbound-method'?: Linter.RuleEntry<TestUnboundMethod>;
5526
5627
  /**
5527
5628
  * enforce valid describe callback
5528
5629
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-describe-callback.md
@@ -8502,12 +8603,21 @@ type JsonPackageRequireAttribution = [] | [{
8502
8603
  }]; // ----- json-package/require-author -----
8503
8604
  type JsonPackageRequireAuthor = [] | [{
8504
8605
  ignorePrivate?: boolean;
8606
+ }]; // ----- json-package/require-bin -----
8607
+ type JsonPackageRequireBin = [] | [{
8608
+ ignorePrivate?: boolean;
8505
8609
  }]; // ----- json-package/require-bugs -----
8506
8610
  type JsonPackageRequireBugs = [] | [{
8507
8611
  ignorePrivate?: boolean;
8508
8612
  }]; // ----- json-package/require-bundleDependencies -----
8509
8613
  type JsonPackageRequireBundleDependencies = [] | [{
8510
8614
  ignorePrivate?: boolean;
8615
+ }]; // ----- json-package/require-contributors -----
8616
+ type JsonPackageRequireContributors = [] | [{
8617
+ ignorePrivate?: boolean;
8618
+ }]; // ----- json-package/require-cpu -----
8619
+ type JsonPackageRequireCpu = [] | [{
8620
+ ignorePrivate?: boolean;
8511
8621
  }]; // ----- json-package/require-dependencies -----
8512
8622
  type JsonPackageRequireDependencies = [] | [{
8513
8623
  ignorePrivate?: boolean;
@@ -8517,6 +8627,12 @@ type JsonPackageRequireDescription = [] | [{
8517
8627
  }]; // ----- json-package/require-devDependencies -----
8518
8628
  type JsonPackageRequireDevDependencies = [] | [{
8519
8629
  ignorePrivate?: boolean;
8630
+ }]; // ----- json-package/require-devEngines -----
8631
+ type JsonPackageRequireDevEngines = [] | [{
8632
+ ignorePrivate?: boolean;
8633
+ }]; // ----- json-package/require-directories -----
8634
+ type JsonPackageRequireDirectories = [] | [{
8635
+ ignorePrivate?: boolean;
8520
8636
  }]; // ----- json-package/require-engines -----
8521
8637
  type JsonPackageRequireEngines = [] | [{
8522
8638
  ignorePrivate?: boolean;
@@ -8526,6 +8642,9 @@ type JsonPackageRequireExports = [] | [{
8526
8642
  }]; // ----- json-package/require-files -----
8527
8643
  type JsonPackageRequireFiles = [] | [{
8528
8644
  ignorePrivate?: boolean;
8645
+ }]; // ----- json-package/require-funding -----
8646
+ type JsonPackageRequireFunding = [] | [{
8647
+ ignorePrivate?: boolean;
8529
8648
  }]; // ----- json-package/require-homepage -----
8530
8649
  type JsonPackageRequireHomepage = [] | [{
8531
8650
  ignorePrivate?: boolean;
@@ -8535,15 +8654,33 @@ type JsonPackageRequireKeywords = [] | [{
8535
8654
  }]; // ----- json-package/require-license -----
8536
8655
  type JsonPackageRequireLicense = [] | [{
8537
8656
  ignorePrivate?: boolean;
8657
+ }]; // ----- json-package/require-main -----
8658
+ type JsonPackageRequireMain = [] | [{
8659
+ ignorePrivate?: boolean;
8660
+ }]; // ----- json-package/require-man -----
8661
+ type JsonPackageRequireMan = [] | [{
8662
+ ignorePrivate?: boolean;
8663
+ }]; // ----- json-package/require-module -----
8664
+ type JsonPackageRequireModule = [] | [{
8665
+ ignorePrivate?: boolean;
8538
8666
  }]; // ----- json-package/require-name -----
8539
8667
  type JsonPackageRequireName = [] | [{
8540
8668
  ignorePrivate?: boolean;
8541
8669
  }]; // ----- json-package/require-optionalDependencies -----
8542
8670
  type JsonPackageRequireOptionalDependencies = [] | [{
8543
8671
  ignorePrivate?: boolean;
8672
+ }]; // ----- json-package/require-os -----
8673
+ type JsonPackageRequireOs = [] | [{
8674
+ ignorePrivate?: boolean;
8675
+ }]; // ----- json-package/require-packageManager -----
8676
+ type JsonPackageRequirePackageManager = [] | [{
8677
+ ignorePrivate?: boolean;
8544
8678
  }]; // ----- json-package/require-peerDependencies -----
8545
8679
  type JsonPackageRequirePeerDependencies = [] | [{
8546
8680
  ignorePrivate?: boolean;
8681
+ }]; // ----- json-package/require-publishConfig -----
8682
+ type JsonPackageRequirePublishConfig = [] | [{
8683
+ ignorePrivate?: boolean;
8547
8684
  }]; // ----- json-package/require-repository -----
8548
8685
  type JsonPackageRequireRepository = [] | [{
8549
8686
  ignorePrivate?: boolean;
@@ -10218,6 +10355,7 @@ type PerfectionistSortArrayIncludes = {
10218
10355
  pattern: string;
10219
10356
  flags?: string;
10220
10357
  } | string);
10358
+ matchesAstSelector?: string;
10221
10359
  };
10222
10360
  partitionByComment?: boolean | (({
10223
10361
  pattern: string;
@@ -10243,7 +10381,7 @@ type PerfectionistSortArrayIncludes = {
10243
10381
  };
10244
10382
  partitionByNewLine?: boolean;
10245
10383
  }[]; // ----- perfectionist/sort-classes -----
10246
- type PerfectionistSortClasses = [] | [{
10384
+ type PerfectionistSortClasses = {
10247
10385
  fallbackSort?: {
10248
10386
  type: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order';
10249
10387
  order?: 'asc' | 'desc';
@@ -10360,6 +10498,16 @@ type PerfectionistSortClasses = [] | [{
10360
10498
  order?: 'asc' | 'desc';
10361
10499
  })[];
10362
10500
  newlinesBetween?: 'ignore' | number;
10501
+ useConfigurationIf?: {
10502
+ allNamesMatchPattern?: ({
10503
+ pattern: string;
10504
+ flags?: string;
10505
+ } | string)[] | ({
10506
+ pattern: string;
10507
+ flags?: string;
10508
+ } | string);
10509
+ matchesAstSelector?: string;
10510
+ };
10363
10511
  useExperimentalDependencyDetection?: boolean;
10364
10512
  ignoreCallbackDependenciesPatterns?: ({
10365
10513
  pattern: string;
@@ -10391,7 +10539,7 @@ type PerfectionistSortClasses = [] | [{
10391
10539
  } | string));
10392
10540
  };
10393
10541
  partitionByNewLine?: boolean;
10394
- }]; // ----- perfectionist/sort-decorators -----
10542
+ }[]; // ----- perfectionist/sort-decorators -----
10395
10543
  type PerfectionistSortDecorators = {
10396
10544
  fallbackSort?: {
10397
10545
  type: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order';
@@ -10490,7 +10638,7 @@ type PerfectionistSortDecorators = {
10490
10638
  };
10491
10639
  partitionByNewLine?: boolean;
10492
10640
  }[]; // ----- perfectionist/sort-enums -----
10493
- type PerfectionistSortEnums = [] | [{
10641
+ type PerfectionistSortEnums = {
10494
10642
  fallbackSort?: {
10495
10643
  type: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order';
10496
10644
  order?: 'asc' | 'desc';
@@ -10580,6 +10728,16 @@ type PerfectionistSortEnums = [] | [{
10580
10728
  order?: 'asc' | 'desc';
10581
10729
  })[];
10582
10730
  newlinesBetween?: 'ignore' | number;
10731
+ useConfigurationIf?: {
10732
+ allNamesMatchPattern?: ({
10733
+ pattern: string;
10734
+ flags?: string;
10735
+ } | string)[] | ({
10736
+ pattern: string;
10737
+ flags?: string;
10738
+ } | string);
10739
+ matchesAstSelector?: string;
10740
+ };
10583
10741
  sortByValue?: 'always' | 'ifNumericEnum' | 'never';
10584
10742
  useExperimentalDependencyDetection?: boolean;
10585
10743
  partitionByComment?: boolean | (({
@@ -10605,7 +10763,7 @@ type PerfectionistSortEnums = [] | [{
10605
10763
  } | string));
10606
10764
  };
10607
10765
  partitionByNewLine?: boolean;
10608
- }]; // ----- perfectionist/sort-export-attributes -----
10766
+ }[]; // ----- perfectionist/sort-export-attributes -----
10609
10767
  type PerfectionistSortExportAttributes = {
10610
10768
  fallbackSort?: {
10611
10769
  type: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order';
@@ -10675,6 +10833,16 @@ type PerfectionistSortExportAttributes = {
10675
10833
  order?: 'asc' | 'desc';
10676
10834
  })[];
10677
10835
  newlinesBetween?: 'ignore' | number;
10836
+ useConfigurationIf?: {
10837
+ allNamesMatchPattern?: ({
10838
+ pattern: string;
10839
+ flags?: string;
10840
+ } | string)[] | ({
10841
+ pattern: string;
10842
+ flags?: string;
10843
+ } | string);
10844
+ matchesAstSelector?: string;
10845
+ };
10678
10846
  partitionByComment?: boolean | (({
10679
10847
  pattern: string;
10680
10848
  flags?: string;
@@ -10867,6 +11035,16 @@ type PerfectionistSortHeritageClauses = {
10867
11035
  order?: 'asc' | 'desc';
10868
11036
  })[];
10869
11037
  newlinesBetween?: 'ignore' | number;
11038
+ useConfigurationIf?: {
11039
+ allNamesMatchPattern?: ({
11040
+ pattern: string;
11041
+ flags?: string;
11042
+ } | string)[] | ({
11043
+ pattern: string;
11044
+ flags?: string;
11045
+ } | string);
11046
+ matchesAstSelector?: string;
11047
+ };
10870
11048
  partitionByNewLine?: boolean;
10871
11049
  partitionByComment?: boolean | (({
10872
11050
  pattern: string;
@@ -10960,6 +11138,16 @@ type PerfectionistSortImportAttributes = {
10960
11138
  order?: 'asc' | 'desc';
10961
11139
  })[];
10962
11140
  newlinesBetween?: 'ignore' | number;
11141
+ useConfigurationIf?: {
11142
+ allNamesMatchPattern?: ({
11143
+ pattern: string;
11144
+ flags?: string;
11145
+ } | string)[] | ({
11146
+ pattern: string;
11147
+ flags?: string;
11148
+ } | string);
11149
+ matchesAstSelector?: string;
11150
+ };
10963
11151
  partitionByComment?: boolean | (({
10964
11152
  pattern: string;
10965
11153
  flags?: string;
@@ -11228,6 +11416,7 @@ type PerfectionistSortInterfaces = {
11228
11416
  pattern: string;
11229
11417
  flags?: string;
11230
11418
  } | string);
11419
+ matchesAstSelector?: string;
11231
11420
  declarationMatchesPattern?: ({
11232
11421
  scope?: 'shallow' | 'deep';
11233
11422
  pattern: string;
@@ -11334,6 +11523,16 @@ type PerfectionistSortIntersectionTypes = {
11334
11523
  order?: 'asc' | 'desc';
11335
11524
  })[];
11336
11525
  newlinesBetween?: 'ignore' | number;
11526
+ useConfigurationIf?: {
11527
+ allNamesMatchPattern?: ({
11528
+ pattern: string;
11529
+ flags?: string;
11530
+ } | string)[] | ({
11531
+ pattern: string;
11532
+ flags?: string;
11533
+ } | string);
11534
+ matchesAstSelector?: string;
11535
+ };
11337
11536
  partitionByComment?: boolean | (({
11338
11537
  pattern: string;
11339
11538
  flags?: string;
@@ -11462,6 +11661,7 @@ type PerfectionistSortJsxProps = {
11462
11661
  pattern: string;
11463
11662
  flags?: string;
11464
11663
  } | string);
11664
+ matchesAstSelector?: string;
11465
11665
  tagMatchesPattern?: ({
11466
11666
  pattern: string;
11467
11667
  flags?: string;
@@ -11549,6 +11749,7 @@ type PerfectionistSortMaps = {
11549
11749
  pattern: string;
11550
11750
  flags?: string;
11551
11751
  } | string);
11752
+ matchesAstSelector?: string;
11552
11753
  };
11553
11754
  partitionByComment?: boolean | (({
11554
11755
  pattern: string;
@@ -11770,6 +11971,16 @@ type PerfectionistSortNamedExports = {
11770
11971
  order?: 'asc' | 'desc';
11771
11972
  })[];
11772
11973
  newlinesBetween?: 'ignore' | number;
11974
+ useConfigurationIf?: {
11975
+ allNamesMatchPattern?: ({
11976
+ pattern: string;
11977
+ flags?: string;
11978
+ } | string)[] | ({
11979
+ pattern: string;
11980
+ flags?: string;
11981
+ } | string);
11982
+ matchesAstSelector?: string;
11983
+ };
11773
11984
  ignoreAlias?: boolean;
11774
11985
  partitionByComment?: boolean | (({
11775
11986
  pattern: string;
@@ -11870,6 +12081,16 @@ type PerfectionistSortNamedImports = {
11870
12081
  order?: 'asc' | 'desc';
11871
12082
  })[];
11872
12083
  newlinesBetween?: 'ignore' | number;
12084
+ useConfigurationIf?: {
12085
+ allNamesMatchPattern?: ({
12086
+ pattern: string;
12087
+ flags?: string;
12088
+ } | string)[] | ({
12089
+ pattern: string;
12090
+ flags?: string;
12091
+ } | string);
12092
+ matchesAstSelector?: string;
12093
+ };
11873
12094
  ignoreAlias?: boolean;
11874
12095
  partitionByComment?: boolean | (({
11875
12096
  pattern: string;
@@ -12017,6 +12238,7 @@ type PerfectionistSortObjectTypes = {
12017
12238
  pattern: string;
12018
12239
  flags?: string;
12019
12240
  } | string);
12241
+ matchesAstSelector?: string;
12020
12242
  declarationMatchesPattern?: ({
12021
12243
  scope?: 'shallow' | 'deep';
12022
12244
  pattern: string;
@@ -12183,6 +12405,7 @@ type PerfectionistSortObjects = {
12183
12405
  pattern: string;
12184
12406
  flags?: string;
12185
12407
  } | string);
12408
+ matchesAstSelector?: string;
12186
12409
  declarationMatchesPattern?: ({
12187
12410
  scope?: 'shallow' | 'deep';
12188
12411
  pattern: string;
@@ -12193,6 +12416,7 @@ type PerfectionistSortObjects = {
12193
12416
  flags?: string;
12194
12417
  } | string);
12195
12418
  };
12419
+ partitionByComputedKey?: boolean;
12196
12420
  styledComponents?: boolean;
12197
12421
  useExperimentalDependencyDetection?: boolean;
12198
12422
  partitionByComment?: boolean | (({
@@ -12299,6 +12523,7 @@ type PerfectionistSortSets = {
12299
12523
  pattern: string;
12300
12524
  flags?: string;
12301
12525
  } | string);
12526
+ matchesAstSelector?: string;
12302
12527
  };
12303
12528
  partitionByComment?: boolean | (({
12304
12529
  pattern: string;
@@ -12408,6 +12633,16 @@ type PerfectionistSortUnionTypes = {
12408
12633
  order?: 'asc' | 'desc';
12409
12634
  })[];
12410
12635
  newlinesBetween?: 'ignore' | number;
12636
+ useConfigurationIf?: {
12637
+ allNamesMatchPattern?: ({
12638
+ pattern: string;
12639
+ flags?: string;
12640
+ } | string)[] | ({
12641
+ pattern: string;
12642
+ flags?: string;
12643
+ } | string);
12644
+ matchesAstSelector?: string;
12645
+ };
12411
12646
  partitionByComment?: boolean | (({
12412
12647
  pattern: string;
12413
12648
  flags?: string;
@@ -12432,7 +12667,7 @@ type PerfectionistSortUnionTypes = {
12432
12667
  };
12433
12668
  partitionByNewLine?: boolean;
12434
12669
  }[]; // ----- perfectionist/sort-variable-declarations -----
12435
- type PerfectionistSortVariableDeclarations = [] | [{
12670
+ type PerfectionistSortVariableDeclarations = {
12436
12671
  fallbackSort?: {
12437
12672
  type: 'alphabetical' | 'natural' | 'line-length' | 'custom' | 'unsorted' | 'subgroup-order';
12438
12673
  order?: 'asc' | 'desc';
@@ -12504,6 +12739,16 @@ type PerfectionistSortVariableDeclarations = [] | [{
12504
12739
  order?: 'asc' | 'desc';
12505
12740
  })[];
12506
12741
  newlinesBetween?: 'ignore' | number;
12742
+ useConfigurationIf?: {
12743
+ allNamesMatchPattern?: ({
12744
+ pattern: string;
12745
+ flags?: string;
12746
+ } | string)[] | ({
12747
+ pattern: string;
12748
+ flags?: string;
12749
+ } | string);
12750
+ matchesAstSelector?: string;
12751
+ };
12507
12752
  useExperimentalDependencyDetection?: boolean;
12508
12753
  partitionByComment?: boolean | (({
12509
12754
  pattern: string;
@@ -12528,7 +12773,7 @@ type PerfectionistSortVariableDeclarations = [] | [{
12528
12773
  } | string));
12529
12774
  };
12530
12775
  partitionByNewLine?: boolean;
12531
- }]; // ----- prefer-arrow-callback -----
12776
+ }[]; // ----- prefer-arrow-callback -----
12532
12777
  type PreferArrowCallback = [] | [{
12533
12778
  allowNamedFunctions?: boolean;
12534
12779
  allowUnboundThis?: boolean;
@@ -12853,6 +13098,13 @@ type SvelteIndent = [] | [{
12853
13098
  type SvelteMaxAttributesPerLine = [] | [{
12854
13099
  multiline?: number;
12855
13100
  singleline?: number;
13101
+ }]; // ----- svelte/max-lines-per-block -----
13102
+ type SvelteMaxLinesPerBlock = [] | [{
13103
+ script?: number;
13104
+ template?: number;
13105
+ style?: number;
13106
+ skipBlankLines?: boolean;
13107
+ skipComments?: boolean;
12856
13108
  }]; // ----- svelte/mustache-spacing -----
12857
13109
  type SvelteMustacheSpacing = [] | [{
12858
13110
  textExpressions?: 'never' | 'always';
@@ -13036,6 +13288,9 @@ type TestRequireMockTypeParameters = [] | [{
13036
13288
  }]; // ----- test/require-top-level-describe -----
13037
13289
  type TestRequireTopLevelDescribe = [] | [{
13038
13290
  maxNumberOfTopLevelDescribes?: number;
13291
+ }]; // ----- test/unbound-method -----
13292
+ type TestUnboundMethod = [] | [{
13293
+ ignoreStatic?: boolean;
13039
13294
  }]; // ----- test/valid-expect -----
13040
13295
  type TestValidExpect = [] | [{
13041
13296
  alwaysAwait?: boolean;
@@ -13937,6 +14192,18 @@ type TsPreferOptionalChain = [] | [{
13937
14192
  requireNullish?: boolean;
13938
14193
  }]; // ----- ts/prefer-promise-reject-errors -----
13939
14194
  type TsPreferPromiseRejectErrors = [] | [{
14195
+ allow?: (string | {
14196
+ from: 'file';
14197
+ name: string | [string, ...string[]];
14198
+ path?: string;
14199
+ } | {
14200
+ from: 'lib';
14201
+ name: string | [string, ...string[]];
14202
+ } | {
14203
+ from: 'package';
14204
+ name: string | [string, ...string[]];
14205
+ package: string;
14206
+ })[];
13940
14207
  allowEmptyReject?: boolean;
13941
14208
  allowThrowingAny?: boolean;
13942
14209
  allowThrowingUnknown?: boolean;
@@ -14574,7 +14841,7 @@ type OptionsTypeAware = {
14574
14841
  };
14575
14842
  };
14576
14843
  type Rules = RuleOptions;
14577
- type TypedFlatConfigItem = Omit<Linter.Config<Linter.RulesRecord & Rules>, 'plugins'> & {
14844
+ type TypedFlatConfigItem = Omit<Linter.Config, 'plugins'> & {
14578
14845
  /**
14579
14846
  * An object containing a name-value mapping of plugin names to plugin objects. When `files` is specified, these plugins are only available to the matching files.
14580
14847
  * @see [Using plugins in your configuration](https://eslint.org/docs/latest/user-guide/configuring/configuration-files-new#using-plugins-in-your-configuration)