@ntnyq/eslint-config 4.0.4 → 4.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.
Files changed (3) hide show
  1. package/dist/index.d.mts +222 -141
  2. package/dist/index.mjs +40 -23
  3. package/package.json +17 -17
package/dist/index.d.mts CHANGED
@@ -2053,233 +2053,233 @@ interface RuleOptions {
2053
2053
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>
2054
2054
  /**
2055
2055
  * Enforce or ban the use of inline type-only markers for named imports.
2056
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/consistent-type-specifier-style.md
2056
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/consistent-type-specifier-style.md
2057
2057
  */
2058
2058
  'import-x/consistent-type-specifier-style'?: Linter.RuleEntry<ImportXConsistentTypeSpecifierStyle>
2059
2059
  /**
2060
2060
  * Ensure a default export is present, given a default import.
2061
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/default.md
2061
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/default.md
2062
2062
  */
2063
2063
  'import-x/default'?: Linter.RuleEntry<[]>
2064
2064
  /**
2065
2065
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
2066
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/dynamic-import-chunkname.md
2066
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/dynamic-import-chunkname.md
2067
2067
  */
2068
2068
  'import-x/dynamic-import-chunkname'?: Linter.RuleEntry<ImportXDynamicImportChunkname>
2069
2069
  /**
2070
2070
  * Forbid any invalid exports, i.e. re-export of the same name.
2071
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/export.md
2071
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/export.md
2072
2072
  */
2073
2073
  'import-x/export'?: Linter.RuleEntry<[]>
2074
2074
  /**
2075
2075
  * Ensure all exports appear after other statements.
2076
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/exports-last.md
2076
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/exports-last.md
2077
2077
  */
2078
2078
  'import-x/exports-last'?: Linter.RuleEntry<[]>
2079
2079
  /**
2080
2080
  * Ensure consistent use of file extension within the import path.
2081
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/extensions.md
2081
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/extensions.md
2082
2082
  */
2083
2083
  'import-x/extensions'?: Linter.RuleEntry<ImportXExtensions>
2084
2084
  /**
2085
2085
  * Ensure all imports appear before other statements.
2086
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/first.md
2086
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/first.md
2087
2087
  */
2088
2088
  'import-x/first'?: Linter.RuleEntry<ImportXFirst>
2089
2089
  /**
2090
2090
  * Prefer named exports to be grouped together in a single export declaration.
2091
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/group-exports.md
2091
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/group-exports.md
2092
2092
  */
2093
2093
  'import-x/group-exports'?: Linter.RuleEntry<[]>
2094
2094
  /**
2095
2095
  * Replaced by `import-x/first`.
2096
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/imports-first.md
2096
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/imports-first.md
2097
2097
  * @deprecated
2098
2098
  */
2099
2099
  'import-x/imports-first'?: Linter.RuleEntry<ImportXImportsFirst>
2100
2100
  /**
2101
2101
  * Enforce the maximum number of dependencies a module can have.
2102
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/max-dependencies.md
2102
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/max-dependencies.md
2103
2103
  */
2104
2104
  'import-x/max-dependencies'?: Linter.RuleEntry<ImportXMaxDependencies>
2105
2105
  /**
2106
2106
  * Ensure named imports correspond to a named export in the remote file.
2107
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/named.md
2107
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/named.md
2108
2108
  */
2109
2109
  'import-x/named'?: Linter.RuleEntry<ImportXNamed>
2110
2110
  /**
2111
2111
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
2112
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/namespace.md
2112
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/namespace.md
2113
2113
  */
2114
2114
  'import-x/namespace'?: Linter.RuleEntry<ImportXNamespace>
2115
2115
  /**
2116
2116
  * Enforce a newline after import statements.
2117
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/newline-after-import.md
2117
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/newline-after-import.md
2118
2118
  */
2119
2119
  'import-x/newline-after-import'?: Linter.RuleEntry<ImportXNewlineAfterImport>
2120
2120
  /**
2121
2121
  * Forbid import of modules using absolute paths.
2122
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-absolute-path.md
2122
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-absolute-path.md
2123
2123
  */
2124
2124
  'import-x/no-absolute-path'?: Linter.RuleEntry<ImportXNoAbsolutePath>
2125
2125
  /**
2126
2126
  * Forbid AMD `require` and `define` calls.
2127
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-amd.md
2127
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-amd.md
2128
2128
  */
2129
2129
  'import-x/no-amd'?: Linter.RuleEntry<[]>
2130
2130
  /**
2131
2131
  * Forbid anonymous values as default exports.
2132
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-anonymous-default-export.md
2132
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-anonymous-default-export.md
2133
2133
  */
2134
2134
  'import-x/no-anonymous-default-export'?: Linter.RuleEntry<ImportXNoAnonymousDefaultExport>
2135
2135
  /**
2136
2136
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
2137
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-commonjs.md
2137
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-commonjs.md
2138
2138
  */
2139
2139
  'import-x/no-commonjs'?: Linter.RuleEntry<ImportXNoCommonjs>
2140
2140
  /**
2141
2141
  * Forbid a module from importing a module with a dependency path back to itself.
2142
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-cycle.md
2142
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-cycle.md
2143
2143
  */
2144
2144
  'import-x/no-cycle'?: Linter.RuleEntry<ImportXNoCycle>
2145
2145
  /**
2146
2146
  * Forbid default exports.
2147
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-default-export.md
2147
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-default-export.md
2148
2148
  */
2149
2149
  'import-x/no-default-export'?: Linter.RuleEntry<[]>
2150
2150
  /**
2151
2151
  * Forbid imported names marked with `@deprecated` documentation tag.
2152
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-deprecated.md
2152
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-deprecated.md
2153
2153
  */
2154
2154
  'import-x/no-deprecated'?: Linter.RuleEntry<[]>
2155
2155
  /**
2156
2156
  * Forbid repeated import of the same module in multiple places.
2157
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-duplicates.md
2157
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-duplicates.md
2158
2158
  */
2159
2159
  'import-x/no-duplicates'?: Linter.RuleEntry<ImportXNoDuplicates>
2160
2160
  /**
2161
2161
  * Forbid `require()` calls with expressions.
2162
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-dynamic-require.md
2162
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-dynamic-require.md
2163
2163
  */
2164
2164
  'import-x/no-dynamic-require'?: Linter.RuleEntry<ImportXNoDynamicRequire>
2165
2165
  /**
2166
2166
  * Forbid empty named import blocks.
2167
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-empty-named-blocks.md
2167
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-empty-named-blocks.md
2168
2168
  */
2169
2169
  'import-x/no-empty-named-blocks'?: Linter.RuleEntry<[]>
2170
2170
  /**
2171
2171
  * Forbid the use of extraneous packages.
2172
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-extraneous-dependencies.md
2172
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-extraneous-dependencies.md
2173
2173
  */
2174
2174
  'import-x/no-extraneous-dependencies'?: Linter.RuleEntry<ImportXNoExtraneousDependencies>
2175
2175
  /**
2176
2176
  * Forbid import statements with CommonJS module.exports.
2177
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-import-module-exports.md
2177
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-import-module-exports.md
2178
2178
  */
2179
2179
  'import-x/no-import-module-exports'?: Linter.RuleEntry<ImportXNoImportModuleExports>
2180
2180
  /**
2181
2181
  * Forbid importing the submodules of other modules.
2182
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-internal-modules.md
2182
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-internal-modules.md
2183
2183
  */
2184
2184
  'import-x/no-internal-modules'?: Linter.RuleEntry<ImportXNoInternalModules>
2185
2185
  /**
2186
2186
  * Forbid the use of mutable exports with `var` or `let`.
2187
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-mutable-exports.md
2187
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-mutable-exports.md
2188
2188
  */
2189
2189
  'import-x/no-mutable-exports'?: Linter.RuleEntry<[]>
2190
2190
  /**
2191
2191
  * Forbid use of exported name as identifier of default export.
2192
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-named-as-default.md
2192
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default.md
2193
2193
  */
2194
2194
  'import-x/no-named-as-default'?: Linter.RuleEntry<[]>
2195
2195
  /**
2196
2196
  * Forbid use of exported name as property of default export.
2197
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-named-as-default-member.md
2197
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-as-default-member.md
2198
2198
  */
2199
2199
  'import-x/no-named-as-default-member'?: Linter.RuleEntry<[]>
2200
2200
  /**
2201
2201
  * Forbid named default exports.
2202
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-named-default.md
2202
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-default.md
2203
2203
  */
2204
2204
  'import-x/no-named-default'?: Linter.RuleEntry<[]>
2205
2205
  /**
2206
2206
  * Forbid named exports.
2207
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-named-export.md
2207
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-named-export.md
2208
2208
  */
2209
2209
  'import-x/no-named-export'?: Linter.RuleEntry<[]>
2210
2210
  /**
2211
2211
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
2212
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-namespace.md
2212
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-namespace.md
2213
2213
  */
2214
2214
  'import-x/no-namespace'?: Linter.RuleEntry<ImportXNoNamespace>
2215
2215
  /**
2216
2216
  * Forbid Node.js builtin modules.
2217
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-nodejs-modules.md
2217
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-nodejs-modules.md
2218
2218
  */
2219
2219
  'import-x/no-nodejs-modules'?: Linter.RuleEntry<ImportXNoNodejsModules>
2220
2220
  /**
2221
2221
  * Forbid importing packages through relative paths.
2222
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-relative-packages.md
2222
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-packages.md
2223
2223
  */
2224
2224
  'import-x/no-relative-packages'?: Linter.RuleEntry<ImportXNoRelativePackages>
2225
2225
  /**
2226
2226
  * Forbid importing modules from parent directories.
2227
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-relative-parent-imports.md
2227
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-relative-parent-imports.md
2228
2228
  */
2229
2229
  'import-x/no-relative-parent-imports'?: Linter.RuleEntry<ImportXNoRelativeParentImports>
2230
2230
  /**
2231
2231
  * Forbid importing a default export by a different name.
2232
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-rename-default.md
2232
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-rename-default.md
2233
2233
  */
2234
2234
  'import-x/no-rename-default'?: Linter.RuleEntry<ImportXNoRenameDefault>
2235
2235
  /**
2236
2236
  * Enforce which files can be imported in a given folder.
2237
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-restricted-paths.md
2237
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-restricted-paths.md
2238
2238
  */
2239
2239
  'import-x/no-restricted-paths'?: Linter.RuleEntry<ImportXNoRestrictedPaths>
2240
2240
  /**
2241
2241
  * Forbid a module from importing itself.
2242
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-self-import.md
2242
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-self-import.md
2243
2243
  */
2244
2244
  'import-x/no-self-import'?: Linter.RuleEntry<[]>
2245
2245
  /**
2246
2246
  * Forbid unassigned imports.
2247
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-unassigned-import.md
2247
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unassigned-import.md
2248
2248
  */
2249
2249
  'import-x/no-unassigned-import'?: Linter.RuleEntry<ImportXNoUnassignedImport>
2250
2250
  /**
2251
2251
  * Ensure imports point to a file/module that can be resolved.
2252
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-unresolved.md
2252
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unresolved.md
2253
2253
  */
2254
2254
  'import-x/no-unresolved'?: Linter.RuleEntry<ImportXNoUnresolved>
2255
2255
  /**
2256
2256
  * Forbid modules without exports, or exports without matching import in another module.
2257
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-unused-modules.md
2257
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-unused-modules.md
2258
2258
  */
2259
2259
  'import-x/no-unused-modules'?: Linter.RuleEntry<ImportXNoUnusedModules>
2260
2260
  /**
2261
2261
  * Forbid unnecessary path segments in import and require statements.
2262
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-useless-path-segments.md
2262
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-useless-path-segments.md
2263
2263
  */
2264
2264
  'import-x/no-useless-path-segments'?: Linter.RuleEntry<ImportXNoUselessPathSegments>
2265
2265
  /**
2266
2266
  * Forbid webpack loader syntax in imports.
2267
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/no-webpack-loader-syntax.md
2267
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/no-webpack-loader-syntax.md
2268
2268
  */
2269
2269
  'import-x/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
2270
2270
  /**
2271
2271
  * Enforce a convention in module import order.
2272
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/order.md
2272
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/order.md
2273
2273
  */
2274
2274
  'import-x/order'?: Linter.RuleEntry<ImportXOrder>
2275
2275
  /**
2276
2276
  * Prefer a default export if module exports a single name or multiple names.
2277
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/prefer-default-export.md
2277
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/prefer-default-export.md
2278
2278
  */
2279
2279
  'import-x/prefer-default-export'?: Linter.RuleEntry<ImportXPreferDefaultExport>
2280
2280
  /**
2281
2281
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
2282
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.10.3/docs/rules/unambiguous.md
2282
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.11.0/docs/rules/unambiguous.md
2283
2283
  */
2284
2284
  'import-x/unambiguous'?: Linter.RuleEntry<[]>
2285
2285
  /**
@@ -2859,30 +2859,37 @@ interface RuleOptions {
2859
2859
  'logical-assignment-operators'?: Linter.RuleEntry<LogicalAssignmentOperators>
2860
2860
  /**
2861
2861
  * Require languages for fenced code blocks
2862
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/fenced-code-language.md
2862
2863
  */
2863
2864
  'markdown/fenced-code-language'?: Linter.RuleEntry<MarkdownFencedCodeLanguage>
2864
2865
  /**
2865
2866
  * Enforce heading levels increment by one
2867
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/heading-increment.md
2866
2868
  */
2867
2869
  'markdown/heading-increment'?: Linter.RuleEntry<[]>
2868
2870
  /**
2869
2871
  * Disallow duplicate headings in the same document
2872
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-headings.md
2870
2873
  */
2871
2874
  'markdown/no-duplicate-headings'?: Linter.RuleEntry<[]>
2872
2875
  /**
2873
2876
  * Disallow empty links
2877
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-links.md
2874
2878
  */
2875
2879
  'markdown/no-empty-links'?: Linter.RuleEntry<[]>
2876
2880
  /**
2877
2881
  * Disallow HTML tags
2882
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-html.md
2878
2883
  */
2879
2884
  'markdown/no-html'?: Linter.RuleEntry<MarkdownNoHtml>
2880
2885
  /**
2881
2886
  * Disallow invalid label references
2887
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-invalid-label-refs.md
2882
2888
  */
2883
2889
  'markdown/no-invalid-label-refs'?: Linter.RuleEntry<[]>
2884
2890
  /**
2885
2891
  * Disallow missing label references
2892
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
2886
2893
  */
2887
2894
  'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>
2888
2895
  /**
@@ -8195,6 +8202,8 @@ type TypescriptEslintNoUnnecessaryCondition = []|[{
8195
8202
  // ----- @typescript-eslint/no-unnecessary-type-assertion -----
8196
8203
  type TypescriptEslintNoUnnecessaryTypeAssertion = []|[{
8197
8204
 
8205
+ checkLiteralConstAssertions?: boolean
8206
+
8198
8207
  typesToIgnore?: string[]
8199
8208
  }]
8200
8209
  // ----- @typescript-eslint/no-unused-expressions -----
@@ -10489,7 +10498,7 @@ type NoEmpty = []|[{
10489
10498
  }]
10490
10499
  // ----- no-empty-function -----
10491
10500
  type NoEmptyFunction = []|[{
10492
- allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods")[]
10501
+ allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods" | "privateConstructors" | "protectedConstructors" | "decoratedFunctions" | "overrideMethods")[]
10493
10502
  }]
10494
10503
  // ----- no-empty-pattern -----
10495
10504
  type NoEmptyPattern = []|[{
@@ -10698,13 +10707,9 @@ type NoRestrictedModules = ((string | {
10698
10707
  }[])
10699
10708
  // ----- no-restricted-properties -----
10700
10709
  type NoRestrictedProperties = ({
10701
- object: string
10702
- property?: string
10703
- message?: string
10710
+ [k: string]: unknown | undefined
10704
10711
  } | {
10705
- object?: string
10706
- property: string
10707
- message?: string
10712
+ [k: string]: unknown | undefined
10708
10713
  })[]
10709
10714
  // ----- no-restricted-syntax -----
10710
10715
  type NoRestrictedSyntax = (string | {
@@ -11831,91 +11836,10 @@ type PerfectionistSortHeritageClauses = []|[{
11831
11836
  })[]
11832
11837
  }]
11833
11838
  // ----- perfectionist/sort-imports -----
11834
- type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
11835
- type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
11836
-
11837
- fallbackSort?: {
11838
-
11839
- order?: ("asc" | "desc")
11840
-
11841
- type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11842
- [k: string]: unknown | undefined
11843
- }
11844
-
11845
- specialCharacters?: ("remove" | "trim" | "keep")
11846
-
11847
- ignoreCase?: boolean
11848
-
11849
- alphabet?: string
11850
-
11851
- locales?: (string | string[])
11852
-
11853
- order?: ("asc" | "desc")
11854
-
11855
- type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
11856
-
11857
- customGroups?: {
11858
-
11859
- value?: {
11860
- [k: string]: unknown | undefined
11861
- }
11862
-
11863
- type?: {
11864
- [k: string]: unknown | undefined
11865
- }
11866
- }
11867
-
11868
- maxLineLength?: number
11869
-
11870
- sortSideEffects?: boolean
11871
-
11872
- environment?: ("node" | "bun")
11873
-
11874
- tsconfigRootDir?: string
11875
-
11876
- partitionByComment?: (boolean | (({
11877
- pattern?: string
11878
- flags?: string
11879
- } | string)[] | ({
11880
- pattern?: string
11881
- flags?: string
11882
- } | string)) | {
11883
- block?: (boolean | (({
11884
- pattern?: string
11885
- flags?: string
11886
- } | string)[] | ({
11887
- pattern?: string
11888
- flags?: string
11889
- } | string)))
11890
- line?: (boolean | (({
11891
- pattern?: string
11892
- flags?: string
11893
- } | string)[] | ({
11894
- pattern?: string
11895
- flags?: string
11896
- } | string)))
11897
- })
11898
-
11899
- partitionByNewLine?: boolean
11900
-
11901
- newlinesBetween?: ("ignore" | "always" | "never")
11902
-
11903
- internalPattern?: (({
11904
- pattern?: string
11905
- flags?: string
11906
- } | string)[] | ({
11907
- pattern?: string
11908
- flags?: string
11909
- } | string))
11910
-
11911
- groups?: (string | string[] | {
11912
-
11913
- newlinesBetween?: ("ignore" | "always" | "never")
11914
- })[]
11915
- })
11916
11839
  type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
11917
11840
  [k: string]: unknown | undefined
11918
11841
  } | _PerfectionistSortImports_IsLineLength)
11842
+ type _PerfectionistSortImportsSortImports = _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType[]
11919
11843
  interface _PerfectionistSortImports_IsLineLength {
11920
11844
  type: "line-length"
11921
11845
  [k: string]: unknown | undefined
@@ -12532,7 +12456,7 @@ type PerfectionistSortModules = []|[{
12532
12456
  })[]
12533
12457
  }]
12534
12458
  // ----- perfectionist/sort-named-exports -----
12535
- type PerfectionistSortNamedExports = []|[{
12459
+ type PerfectionistSortNamedExports = {
12536
12460
 
12537
12461
  fallbackSort?: {
12538
12462
 
@@ -12558,6 +12482,68 @@ type PerfectionistSortNamedExports = []|[{
12558
12482
 
12559
12483
  ignoreAlias?: boolean
12560
12484
 
12485
+ customGroups?: ({
12486
+
12487
+ newlinesInside?: ("always" | "never")
12488
+
12489
+ fallbackSort?: {
12490
+
12491
+ order?: ("asc" | "desc")
12492
+
12493
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12494
+ [k: string]: unknown | undefined
12495
+ }
12496
+
12497
+ groupName?: string
12498
+
12499
+ order?: ("asc" | "desc")
12500
+
12501
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12502
+ anyOf?: {
12503
+
12504
+ modifiers?: ("value" | "type")[]
12505
+
12506
+ selector?: "export"
12507
+
12508
+ elementNamePattern?: (({
12509
+ pattern?: string
12510
+ flags?: string
12511
+ } | string)[] | ({
12512
+ pattern?: string
12513
+ flags?: string
12514
+ } | string))
12515
+ }[]
12516
+ } | {
12517
+
12518
+ newlinesInside?: ("always" | "never")
12519
+
12520
+ fallbackSort?: {
12521
+
12522
+ order?: ("asc" | "desc")
12523
+
12524
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12525
+ [k: string]: unknown | undefined
12526
+ }
12527
+
12528
+ groupName?: string
12529
+
12530
+ order?: ("asc" | "desc")
12531
+
12532
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12533
+
12534
+ modifiers?: ("value" | "type")[]
12535
+
12536
+ selector?: "export"
12537
+
12538
+ elementNamePattern?: (({
12539
+ pattern?: string
12540
+ flags?: string
12541
+ } | string)[] | ({
12542
+ pattern?: string
12543
+ flags?: string
12544
+ } | string))
12545
+ })[]
12546
+
12561
12547
  partitionByComment?: (boolean | (({
12562
12548
  pattern?: string
12563
12549
  flags?: string
@@ -12582,9 +12568,16 @@ type PerfectionistSortNamedExports = []|[{
12582
12568
  })
12583
12569
 
12584
12570
  partitionByNewLine?: boolean
12585
- }]
12571
+
12572
+ newlinesBetween?: ("ignore" | "always" | "never")
12573
+
12574
+ groups?: (string | string[] | {
12575
+
12576
+ newlinesBetween?: ("ignore" | "always" | "never")
12577
+ })[]
12578
+ }[]
12586
12579
  // ----- perfectionist/sort-named-imports -----
12587
- type PerfectionistSortNamedImports = []|[{
12580
+ type PerfectionistSortNamedImports = {
12588
12581
 
12589
12582
  fallbackSort?: {
12590
12583
 
@@ -12610,6 +12603,68 @@ type PerfectionistSortNamedImports = []|[{
12610
12603
 
12611
12604
  ignoreAlias?: boolean
12612
12605
 
12606
+ customGroups?: ({
12607
+
12608
+ newlinesInside?: ("always" | "never")
12609
+
12610
+ fallbackSort?: {
12611
+
12612
+ order?: ("asc" | "desc")
12613
+
12614
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12615
+ [k: string]: unknown | undefined
12616
+ }
12617
+
12618
+ groupName?: string
12619
+
12620
+ order?: ("asc" | "desc")
12621
+
12622
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12623
+ anyOf?: {
12624
+
12625
+ modifiers?: ("value" | "type")[]
12626
+
12627
+ selector?: "import"
12628
+
12629
+ elementNamePattern?: (({
12630
+ pattern?: string
12631
+ flags?: string
12632
+ } | string)[] | ({
12633
+ pattern?: string
12634
+ flags?: string
12635
+ } | string))
12636
+ }[]
12637
+ } | {
12638
+
12639
+ newlinesInside?: ("always" | "never")
12640
+
12641
+ fallbackSort?: {
12642
+
12643
+ order?: ("asc" | "desc")
12644
+
12645
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12646
+ [k: string]: unknown | undefined
12647
+ }
12648
+
12649
+ groupName?: string
12650
+
12651
+ order?: ("asc" | "desc")
12652
+
12653
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
12654
+
12655
+ modifiers?: ("value" | "type")[]
12656
+
12657
+ selector?: "import"
12658
+
12659
+ elementNamePattern?: (({
12660
+ pattern?: string
12661
+ flags?: string
12662
+ } | string)[] | ({
12663
+ pattern?: string
12664
+ flags?: string
12665
+ } | string))
12666
+ })[]
12667
+
12613
12668
  partitionByComment?: (boolean | (({
12614
12669
  pattern?: string
12615
12670
  flags?: string
@@ -12634,7 +12689,14 @@ type PerfectionistSortNamedImports = []|[{
12634
12689
  })
12635
12690
 
12636
12691
  partitionByNewLine?: boolean
12637
- }]
12692
+
12693
+ newlinesBetween?: ("ignore" | "always" | "never")
12694
+
12695
+ groups?: (string | string[] | {
12696
+
12697
+ newlinesBetween?: ("ignore" | "always" | "never")
12698
+ })[]
12699
+ }[]
12638
12700
  // ----- perfectionist/sort-object-types -----
12639
12701
  type PerfectionistSortObjectTypes = {
12640
12702
 
@@ -15771,6 +15833,7 @@ type YmlFlowSequenceBracketSpacing = []|[("always" | "never")]|[("always" | "nev
15771
15833
  type YmlIndent = []|[number]|[number, {
15772
15834
  indentBlockSequences?: boolean
15773
15835
  indicatorValueIndent?: number
15836
+ alignMultilineFlowScalars?: boolean
15774
15837
  }]
15775
15838
  // ----- yml/key-name-casing -----
15776
15839
  type YmlKeyNameCasing = []|[{
@@ -16261,6 +16324,24 @@ declare const PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS: strin
16261
16324
  * @see {@link https://perfectionist.dev/rules/sort-imports}
16262
16325
  */
16263
16326
  declare const PERFECTIONIST_SORT_IMPORTS_GROUPS: string[];
16327
+ /**
16328
+ * Shared option `groups` for rule `sort-exports`
16329
+ *
16330
+ * @see {@link https://perfectionist.dev/rules/sort-exports}
16331
+ */
16332
+ declare const PERFECTIONIST_SORT_EXPORTS_GROUPS: string[];
16333
+ /**
16334
+ * Shared option `groups` for rule `sort-named-exports`
16335
+ *
16336
+ * @see {@link https://perfectionist.dev/rules/sort-named-exports}
16337
+ */
16338
+ declare const PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS: string[];
16339
+ /**
16340
+ * Shared option `groups` for rule `sort-named-imports`
16341
+ *
16342
+ * @see {@link https://perfectionist.dev/rules/sort-named-imports}
16343
+ */
16344
+ declare const PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS: string[];
16264
16345
  /**
16265
16346
  * Shared option `groups` for rule `sort-classes`
16266
16347
  *
@@ -16270,5 +16351,5 @@ declare const PERFECTIONIST_SORT_IMPORTS_GROUPS: string[];
16270
16351
  */
16271
16352
  declare const PERFECTIONIST_SORT_CLASSES_GROUPS: string[];
16272
16353
 
16273
- export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML, PERFECTIONIST_COMMON_RULE_OPTIONS, PERFECTIONIST_EXTRA_RULE_OPTIONS, PERFECTIONIST_SORT_CLASSES_GROUPS, PERFECTIONIST_SORT_IMPORTS_GROUPS, PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS, PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS, PERFECTIONIST_SORT_OBJECTS_GROUPS, PRETTIER_DEFAULT_OPTIONS, combineConfigs, configAntfu, configCommand, configDeMorgan, configDepend, configESLintComments, configESLintPlugin, configFormat, configGitHubAction, configGitIgnore, configIgnores, configImportX, configJSX, configJavaScript, configJsdoc, configJsonc, configMarkdown, configNode, configNtnyq, configPerfectionist, configPinia, configPnpm, configPrettier, configRegexp, configSVGO, configSort, configSpecials, configTest, configToml, configTypeScript, configUnicorn, configUnoCSS, configUnusedImports, configVue, configYml, defineESLintConfig, ensurePackages, getOverrides, hasPinia, hasShadcnVue, hasTypeScript, hasUnoCSS, hasVitest, hasVue, interopDefault, isInGitHooksOrRunBySpecifyPackages, mergePrettierOptions, index_d as parserPlain, resolveSubOptions };
16274
- export type { AccessorPairs, AntfuConsistentChaining, AntfuConsistentListNewline, AntfuIndentUnindent, ArrayBracketNewline, ArrayBracketSpacing, ArrayCallbackReturn, ArrayElementNewline, Arrayable, ArrowBodyStyle, ArrowParens, ArrowSpacing, Awaitable, BlockSpacing, BraceStyle, CallbackReturn, Camelcase, CapitalizedComments, ClassMethodsUseThis, CommaDangle, CommaSpacing, CommaStyle, Complexity, ComputedPropertySpacing, ConfigAntfuOptions, ConfigCommandOptions, ConfigDeMorganOptions, ConfigDependOptions, ConfigESLintCommentsOptions, ConfigESLintPluginOptions, ConfigFormatOptions, ConfigGitHubActionOptions, ConfigGitIgnoreOptions, ConfigIgnoresOptions, ConfigImportXOptions, ConfigJavaScriptOptions, ConfigJsdocOptions, ConfigJsoncOptions, ConfigMarkdownOptions, ConfigNames, ConfigNodeOptions, ConfigNtnyqOptions, ConfigOptions, ConfigOptionsInternal, ConfigPerfectionistOptions, ConfigPiniaOptions, ConfigPnpmOptions, ConfigPrettierOptions, ConfigRegexpOptions, ConfigSVGOOptions, ConfigSortOptions, ConfigSpecialsOptions, ConfigTestOptions, ConfigTomlOptions, ConfigTypeScriptOptions, ConfigUnicornOptions, ConfigUnoCSSOptions, ConfigUnusedImportsOptions, ConfigVueOptions, ConfigYmlOptions, ConsistentReturn, ConsistentThis, Curly, DefaultCase, DependBanDependencies, DotLocation, DotNotation, ESLintConfig, ESLintParser, ESLintParserOptions, ESLintProcessor, ESLintRuleSeverity, ESLintRulesRecord, EolLast, Eqeqeq, EslintCommunityEslintCommentsDisableEnablePair, EslintCommunityEslintCommentsNoRestrictedDisable, EslintCommunityEslintCommentsNoUse, EslintCommunityEslintCommentsRequireDescription, EslintPluginConsistentOutput, EslintPluginMetaPropertyOrdering, EslintPluginNoPropertyInNode, EslintPluginReportMessageFormat, EslintPluginRequireMetaDocsDescription, EslintPluginRequireMetaDocsRecommended, EslintPluginRequireMetaDocsUrl, EslintPluginRequireMetaFixable, EslintPluginRequireMetaSchema, EslintPluginTestCasePropertyOrdering, EslintPluginTestCaseShorthandStrings, FormatDprint, FormatPrettier, FuncCallSpacing, FuncNameMatching, FuncNames, FuncStyle, FunctionCallArgumentNewline, FunctionParenNewline, GeneratorStarSpacing, GetterReturn, GithubActionActionNameCasing, GithubActionJobIdCasing, GithubActionMaxJobsPerAction, GithubActionPreferFileExtension, GithubActionPreferStepUsesStyle, GroupedAccessorPairs, HandleCallbackErr, IdBlacklist, IdDenylist, IdLength, IdMatch, ImplicitArrowLinebreak, ImportXConsistentTypeSpecifierStyle, ImportXDynamicImportChunkname, ImportXExtensions, ImportXFirst, ImportXImportsFirst, ImportXMaxDependencies, ImportXNamed, ImportXNamespace, ImportXNewlineAfterImport, ImportXNoAbsolutePath, ImportXNoAnonymousDefaultExport, ImportXNoCommonjs, ImportXNoCycle, ImportXNoDuplicates, ImportXNoDynamicRequire, ImportXNoExtraneousDependencies, ImportXNoImportModuleExports, ImportXNoInternalModules, ImportXNoNamespace, ImportXNoNodejsModules, ImportXNoRelativePackages, ImportXNoRelativeParentImports, ImportXNoRenameDefault, ImportXNoRestrictedPaths, ImportXNoUnassignedImport, ImportXNoUnresolved, ImportXNoUnusedModules, ImportXNoUselessPathSegments, ImportXOrder, ImportXPreferDefaultExport, Indent, IndentLegacy, InitDeclarations, InteropModuleDefault, JsdocCheckExamples, JsdocCheckIndentation, JsdocCheckLineAlignment, JsdocCheckParamNames, JsdocCheckPropertyNames, JsdocCheckTagNames, JsdocCheckTypes, JsdocCheckValues, JsdocConvertToJsdocComments, JsdocEmptyTags, JsdocImplementsOnClasses, JsdocInformativeDocs, JsdocLinesBeforeBlock, JsdocMatchDescription, JsdocMatchName, JsdocMultilineBlocks, JsdocNoBadBlocks, JsdocNoBlankBlocks, JsdocNoDefaults, JsdocNoMissingSyntax, JsdocNoMultiAsterisks, JsdocNoRestrictedSyntax, JsdocNoTypes, JsdocNoUndefinedTypes, JsdocRequireAsteriskPrefix, JsdocRequireDescription, JsdocRequireDescriptionCompleteSentence, JsdocRequireExample, JsdocRequireFileOverview, JsdocRequireHyphenBeforeParamDescription, JsdocRequireJsdoc, JsdocRequireParam, JsdocRequireParamDescription, JsdocRequireParamName, JsdocRequireParamType, JsdocRequireReturns, JsdocRequireReturnsCheck, JsdocRequireReturnsDescription, JsdocRequireReturnsType, JsdocRequireTemplate, JsdocRequireThrows, JsdocRequireYields, JsdocRequireYieldsCheck, JsdocSortTags, JsdocTagLines, JsdocTextEscaping, JsdocValidTypes, JsoncArrayBracketNewline, JsoncArrayBracketSpacing, JsoncArrayElementNewline, JsoncCommaDangle, JsoncCommaStyle, JsoncIndent, JsoncKeyNameCasing, JsoncKeySpacing, JsoncNoIrregularWhitespace, JsoncObjectCurlyNewline, JsoncObjectCurlySpacing, JsoncObjectPropertyNewline, JsoncQuoteProps, JsoncQuotes, JsoncSortArrayValues, JsoncSortKeys, JsoncSpaceUnaryOps, JsxQuotes, KeySpacing, KeywordSpacing, LineCommentPosition, LinebreakStyle, LinesAroundComment, LinesAroundDirective, LinesBetweenClassMembers, LogicalAssignmentOperators, MarkdownFencedCodeLanguage, MarkdownNoHtml, MaxClassesPerFile, MaxDepth, MaxLen, MaxLines, MaxLinesPerFunction, MaxNestedCallbacks, MaxParams, MaxStatements, MaxStatementsPerLine, MultilineCommentStyle, MultilineTernary, NewCap, NewParens, NewlineAfterVar, NewlinePerChainedCall, NoBitwise, NoCondAssign, NoConfusingArrow, NoConsole, NoConstantCondition, NoDuplicateImports, NoElseReturn, NoEmpty, NoEmptyFunction, NoEmptyPattern, NoEval, NoExtendNative, NoExtraBooleanCast, NoExtraParens, NoFallthrough, NoGlobalAssign, NoImplicitCoercion, NoImplicitGlobals, NoInlineComments, NoInnerDeclarations, NoInvalidRegexp, NoInvalidThis, NoIrregularWhitespace, NoLabels, NoMagicNumbers, NoMisleadingCharacterClass, NoMixedOperators, NoMixedRequires, NoMixedSpacesAndTabs, NoMultiAssign, NoMultiSpaces, NoMultipleEmptyLines, NoNativeReassign, NoOnlyTestsNoOnlyTests, NoParamReassign, NoPlusplus, NoPromiseExecutorReturn, NoRedeclare, NoRestrictedExports, NoRestrictedGlobals, NoRestrictedImports, NoRestrictedModules, NoRestrictedProperties, NoRestrictedSyntax, NoReturnAssign, NoSelfAssign, NoSequences, NoShadow, NoSync, NoTabs, NoTrailingSpaces, NoUndef, NoUnderscoreDangle, NoUnneededTernary, NoUnreachableLoop, NoUnsafeNegation, NoUnsafeOptionalChaining, NoUnusedExpressions, NoUnusedVars, NoUseBeforeDefine, NoUselessComputedKey, NoUselessRename, NoVoid, NoWarningComments, NodeCallbackReturn, NodeExportsStyle, NodeFileExtensionInImport, NodeHandleCallbackErr, NodeHashbang, NodeNoDeprecatedApi, NodeNoExtraneousImport, NodeNoExtraneousRequire, NodeNoHideCoreModules, NodeNoMissingImport, NodeNoMissingRequire, NodeNoMixedRequires, NodeNoProcessEnv, NodeNoRestrictedImport, NodeNoRestrictedRequire, NodeNoSync, NodeNoUnpublishedBin, NodeNoUnpublishedImport, NodeNoUnpublishedRequire, NodeNoUnsupportedFeaturesEsBuiltins, NodeNoUnsupportedFeaturesEsSyntax, NodeNoUnsupportedFeaturesNodeBuiltins, NodePreferGlobalBuffer, NodePreferGlobalConsole, NodePreferGlobalProcess, NodePreferGlobalTextDecoder, NodePreferGlobalTextEncoder, NodePreferGlobalUrl, NodePreferGlobalUrlSearchParams, NodePreferNodeProtocol, NodeShebang, NonblockStatementBodyPosition, NtnyqNoDuplicateExports, NtnyqPreferNewlineAfterFileHeader, ObjectCurlyNewline, ObjectCurlySpacing, ObjectPropertyNewline, ObjectShorthand, OneVar, OneVarDeclarationPerLine, OperatorAssignment, OperatorLinebreak, OptionsFiles, OptionsIgnores, OptionsOverrides, OptionsShareable, PaddedBlocks, PaddingLineBetweenStatements, PerfectionistPartitionByComment, PerfectionistSortArrayIncludes, PerfectionistSortClasses, PerfectionistSortDecorators, PerfectionistSortEnums, PerfectionistSortExports, PerfectionistSortHeritageClauses, PerfectionistSortImports, PerfectionistSortInterfaces, PerfectionistSortIntersectionTypes, PerfectionistSortJsxProps, PerfectionistSortMaps, PerfectionistSortModules, PerfectionistSortNamedExports, PerfectionistSortNamedImports, PerfectionistSortObjectTypes, PerfectionistSortObjects, PerfectionistSortSets, PerfectionistSortSwitchCase, PerfectionistSortUnionTypes, PerfectionistSortVariableDeclarations, PiniaPreferUseStoreNamingConvention, PnpmJsonEnforceCatalog, PnpmJsonPreferWorkspaceSettings, PnpmJsonValidCatalog, PnpmYamlNoDuplicateCatalogItem, PreferArrowCallback, PreferConst, PreferDestructuring, PreferPromiseRejectErrors, PreferReflect, PreferRegexLiterals, PrettierOptions, PrettierPrettier, Pretty, QuoteProps, Quotes, Radix, RegexpHexadecimalEscape, RegexpLetterCase, RegexpMatchAny, RegexpNoDupeDisjunctions, RegexpNoLazyEnds, RegexpNoLegacyFeatures, RegexpNoMisleadingCapturingGroup, RegexpNoMisleadingUnicodeCharacter, RegexpNoMissingGFlag, RegexpNoObscureRange, RegexpNoSuperLinearBacktracking, RegexpNoSuperLinearMove, RegexpNoUnusedCapturingGroup, RegexpNoUselessCharacterClass, RegexpNoUselessFlag, RegexpNoUselessNonCapturingGroup, RegexpOptimalQuantifierConcatenation, RegexpPreferCharacterClass, RegexpPreferD, RegexpPreferLookaround, RegexpPreferNamedReplacement, RegexpPreferRange, RegexpPreferResultArrayGroups, RegexpSortCharacterClassElements, RegexpUnicodeEscape, RegexpUnicodeProperty, RequireAtomicUpdates, RequireUnicodeRegexp, ResolvedOptions, RestSpreadSpacing, RuleOptions, Semi, SemiSpacing, SemiStyle, SortImports, SortKeys, SortVars, SpaceBeforeBlocks, SpaceBeforeFunctionParen, SpaceInParens, SpaceInfixOps, SpaceUnaryOps, SpacedComment, Strict, SvgoSvgo, SwitchColonSpacing, TSESLintParserOptions, TemplateCurlySpacing, TemplateTagSpacing, TomlArrayBracketNewline, TomlArrayBracketSpacing, TomlArrayElementNewline, TomlCommaStyle, TomlIndent, TomlInlineTableCurlySpacing, TomlKeySpacing, TomlNoMixedTypeInArray, TomlNoNonDecimalInteger, TomlPrecisionOfFractionalSeconds, TomlPrecisionOfInteger, TomlQuotedKeys, TomlSpacedComment, TomlTableBracketSpacing, TypedConfigItem, TypescriptEslintArrayType, TypescriptEslintBanTsComment, TypescriptEslintClassLiteralPropertyStyle, TypescriptEslintClassMethodsUseThis, TypescriptEslintConsistentGenericConstructors, TypescriptEslintConsistentIndexedObjectStyle, TypescriptEslintConsistentReturn, TypescriptEslintConsistentTypeAssertions, TypescriptEslintConsistentTypeDefinitions, TypescriptEslintConsistentTypeExports, TypescriptEslintConsistentTypeImports, TypescriptEslintDotNotation, TypescriptEslintExplicitFunctionReturnType, TypescriptEslintExplicitMemberAccessibility, TypescriptEslintExplicitModuleBoundaryTypes, TypescriptEslintInitDeclarations, TypescriptEslintMaxParams, TypescriptEslintMemberOrdering, TypescriptEslintMethodSignatureStyle, TypescriptEslintNamingConvention, TypescriptEslintNoBaseToString, TypescriptEslintNoConfusingVoidExpression, TypescriptEslintNoDeprecated, TypescriptEslintNoDuplicateTypeConstituents, TypescriptEslintNoEmptyFunction, TypescriptEslintNoEmptyInterface, TypescriptEslintNoEmptyObjectType, TypescriptEslintNoExplicitAny, TypescriptEslintNoExtraneousClass, TypescriptEslintNoFloatingPromises, TypescriptEslintNoInferrableTypes, TypescriptEslintNoInvalidThis, TypescriptEslintNoInvalidVoidType, TypescriptEslintNoMagicNumbers, TypescriptEslintNoMeaninglessVoidOperator, TypescriptEslintNoMisusedPromises, TypescriptEslintNoMisusedSpread, TypescriptEslintNoNamespace, TypescriptEslintNoRedeclare, TypescriptEslintNoRequireImports, TypescriptEslintNoRestrictedImports, TypescriptEslintNoRestrictedTypes, TypescriptEslintNoShadow, TypescriptEslintNoThisAlias, TypescriptEslintNoTypeAlias, TypescriptEslintNoUnnecessaryBooleanLiteralCompare, TypescriptEslintNoUnnecessaryCondition, TypescriptEslintNoUnnecessaryTypeAssertion, TypescriptEslintNoUnusedExpressions, TypescriptEslintNoUnusedVars, TypescriptEslintNoUseBeforeDefine, TypescriptEslintNoVarRequires, TypescriptEslintOnlyThrowError, TypescriptEslintParameterProperties, TypescriptEslintPreferDestructuring, TypescriptEslintPreferLiteralEnumMember, TypescriptEslintPreferNullishCoalescing, TypescriptEslintPreferOptionalChain, TypescriptEslintPreferPromiseRejectErrors, TypescriptEslintPreferReadonly, TypescriptEslintPreferReadonlyParameterTypes, TypescriptEslintPreferStringStartsEndsWith, TypescriptEslintPromiseFunctionAsync, TypescriptEslintRequireArraySortCompare, TypescriptEslintRestrictPlusOperands, TypescriptEslintRestrictTemplateExpressions, TypescriptEslintReturnAwait, TypescriptEslintSortTypeConstituents, TypescriptEslintStrictBooleanExpressions, TypescriptEslintSwitchExhaustivenessCheck, TypescriptEslintTripleSlashReference, TypescriptEslintTypedef, TypescriptEslintUnboundMethod, TypescriptEslintUnifiedSignatures, UnicodeBom, UnicornBetterRegex, UnicornCatchErrorName, UnicornConsistentFunctionScoping, UnicornEscapeCase, UnicornExpiringTodoComments, UnicornExplicitLengthCheck, UnicornFilenameCase, UnicornImportStyle, UnicornNoArrayPushPush, UnicornNoArrayReduce, UnicornNoInstanceofBuiltins, UnicornNoKeywordPrefix, UnicornNoNull, UnicornNoTypeofUndefined, UnicornNoUnnecessaryPolyfills, UnicornNoUselessUndefined, UnicornNumberLiteralCase, UnicornNumericSeparatorsStyle, UnicornPreferAddEventListener, UnicornPreferArrayFind, UnicornPreferArrayFlat, UnicornPreferAt, UnicornPreferExportFrom, UnicornPreferNumberProperties, UnicornPreferObjectFromEntries, UnicornPreferStructuredClone, UnicornPreferSwitch, UnicornPreferTernary, UnicornPreventAbbreviations, UnicornRelativeUrlStyle, UnicornStringContent, UnicornSwitchCaseBraces, UnicornTemplateIndent, UnocssEnforceClassCompile, UnusedImportsNoUnusedImports, UnusedImportsNoUnusedVars, UseIsnan, ValidTypeof, VitestConsistentTestFilename, VitestConsistentTestIt, VitestExpectExpect, VitestMaxExpects, VitestMaxNestedDescribe, VitestNoFocusedTests, VitestNoHooks, VitestNoLargeSnapshots, VitestNoRestrictedMatchers, VitestNoRestrictedViMethods, VitestNoStandaloneExpect, VitestPreferExpectAssertions, VitestPreferLowercaseTitle, VitestPreferSnapshotHint, VitestRequireHook, VitestRequireMockTypeParameters, VitestRequireTopLevelDescribe, VitestValidExpect, VitestValidTitle, VueArrayBracketNewline, VueArrayBracketSpacing, VueArrayElementNewline, VueArrowSpacing, VueAttributeHyphenation, VueAttributesOrder, VueBlockLang, VueBlockOrder, VueBlockSpacing, VueBlockTagNewline, VueBraceStyle, VueCamelcase, VueCommaDangle, VueCommaSpacing, VueCommaStyle, VueCommentDirective, VueComponentApiStyle, VueComponentDefinitionNameCasing, VueComponentNameInTemplateCasing, VueComponentOptionsNameCasing, VueCustomEventNameCasing, VueDefineEmitsDeclaration, VueDefineMacrosOrder, VueDefinePropsDeclaration, VueDotLocation, VueDotNotation, VueEnforceStyleAttribute, VueEqeqeq, VueFirstAttributeLinebreak, VueFuncCallSpacing, VueHtmlButtonHasType, VueHtmlClosingBracketNewline, VueHtmlClosingBracketSpacing, VueHtmlCommentContentNewline, VueHtmlCommentContentSpacing, VueHtmlCommentIndent, VueHtmlIndent, VueHtmlQuotes, VueHtmlSelfClosing, VueKeySpacing, VueKeywordSpacing, VueMatchComponentFileName, VueMaxAttributesPerLine, VueMaxLen, VueMaxLinesPerBlock, VueMaxProps, VueMaxTemplateDepth, VueMultiWordComponentNames, VueMultilineHtmlElementContentNewline, VueMultilineTernary, VueMustacheInterpolationSpacing, VueNewLineBetweenMultiLineProperty, VueNextTickStyle, VueNoBareStringsInTemplate, VueNoBooleanDefault, VueNoChildContent, VueNoConsole, VueNoConstantCondition, VueNoDeprecatedModelDefinition, VueNoDeprecatedRouterLinkTagProp, VueNoDeprecatedSlotAttribute, VueNoDupeKeys, VueNoDuplicateAttrInheritance, VueNoDuplicateAttributes, VueNoEmptyPattern, VueNoExtraParens, VueNoImplicitCoercion, VueNoIrregularWhitespace, VueNoLoneTemplate, VueNoMultiSpaces, VueNoMutatingProps, VueNoParsingError, VueNoPotentialComponentOptionTypo, VueNoRequiredPropWithDefault, VueNoReservedComponentNames, VueNoReservedKeys, VueNoReservedProps, VueNoRestrictedBlock, VueNoRestrictedCallAfterAwait, VueNoRestrictedClass, VueNoRestrictedComponentNames, VueNoRestrictedComponentOptions, VueNoRestrictedCustomEvent, VueNoRestrictedHtmlElements, VueNoRestrictedProps, VueNoRestrictedStaticAttribute, VueNoRestrictedSyntax, VueNoRestrictedVBind, VueNoRestrictedVOn, VueNoStaticInlineStyles, VueNoTemplateShadow, VueNoTemplateTargetBlank, VueNoUndefComponents, VueNoUndefProperties, VueNoUnsupportedFeatures, VueNoUnusedComponents, VueNoUnusedProperties, VueNoUnusedVars, VueNoUseVIfWithVFor, VueNoUselessMustaches, VueNoUselessVBind, VueNoVTextVHtmlOnComponent, VueObjectCurlyNewline, VueObjectCurlySpacing, VueObjectPropertyNewline, VueObjectShorthand, VueOperatorLinebreak, VueOrderInComponents, VuePaddingLineBetweenBlocks, VuePaddingLineBetweenTags, VuePaddingLinesInComponentDefinition, VuePreferTrueAttributeShorthand, VuePropNameCasing, VueQuoteProps, VueRequireDirectExport, VueRequireExplicitEmits, VueRequireMacroVariableName, VueRequirePropComment, VueRequireToggleInsideTransition, VueRestrictedComponentNames, VueReturnInComputedProperty, VueScriptIndent, VueSinglelineHtmlElementContentNewline, VueSlotNameCasing, VueSortKeys, VueSpaceInParens, VueSpaceInfixOps, VueSpaceUnaryOps, VueTemplateCurlySpacing, VueThisInTemplate, VueVBindStyle, VueVForDelimiterStyle, VueVOnEventHyphenation, VueVOnHandlerStyle, VueVOnStyle, VueVSlotStyle, VueValidVOn, VueValidVSlot, WrapIife, YieldStarSpacing, YmlBlockMapping, YmlBlockMappingColonIndicatorNewline, YmlBlockMappingQuestionIndicatorNewline, YmlBlockSequence, YmlBlockSequenceHyphenIndicatorNewline, YmlFileExtension, YmlFlowMappingCurlyNewline, YmlFlowMappingCurlySpacing, YmlFlowSequenceBracketNewline, YmlFlowSequenceBracketSpacing, YmlIndent, YmlKeyNameCasing, YmlKeySpacing, YmlNoIrregularWhitespace, YmlNoMultipleEmptyLines, YmlPlainScalar, YmlQuotes, YmlSortKeys, YmlSortSequenceValues, YmlSpacedComment, Yoda, _ArrayElementNewlineBasicConfig, _CommaDangleValue, _CommaDangleValueWithIgnore, _FuncNamesValue, _JsoncArrayElementNewlineBasicConfig, _JsoncCommaDangleValue, _JsoncCommaDangleValueWithIgnore, _PaddingLineBetweenStatementsPaddingType, _PaddingLineBetweenStatementsStatementType, _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType, _PerfectionistSortImportsSortImports, _PerfectionistSortImports_IsLineLength, _TomlArrayElementNewlineBasicConfig, _TypescriptEslintNamingConventionFormatOptionsConfig, _TypescriptEslintNamingConventionPredefinedFormats, _TypescriptEslintNamingConventionTypeModifiers, _TypescriptEslintNamingConventionUnderscoreOptions, _TypescriptEslintNamingConvention_MatchRegexConfig, _TypescriptEslintNamingConvention_PrefixSuffixConfig, _UnicornImportStyleStyles, _UnicornImportStyle_BooleanObject, _UnicornImportStyle_ModuleStyles, _UnicornPreventAbbreviationsReplacements, _UnicornPreventAbbreviations_Abbreviations, _UnicornPreventAbbreviations_BooleanObject, _VueArrayElementNewlineBasicConfig, _VueCommaDangleValue, _VueCommaDangleValueWithIgnore, _VueHtmlSelfClosingOptionValue };
16354
+ export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML, PERFECTIONIST_COMMON_RULE_OPTIONS, PERFECTIONIST_EXTRA_RULE_OPTIONS, PERFECTIONIST_SORT_CLASSES_GROUPS, PERFECTIONIST_SORT_EXPORTS_GROUPS, PERFECTIONIST_SORT_IMPORTS_GROUPS, PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS, PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS, PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS, PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS, PERFECTIONIST_SORT_OBJECTS_GROUPS, PRETTIER_DEFAULT_OPTIONS, combineConfigs, configAntfu, configCommand, configDeMorgan, configDepend, configESLintComments, configESLintPlugin, configFormat, configGitHubAction, configGitIgnore, configIgnores, configImportX, configJSX, configJavaScript, configJsdoc, configJsonc, configMarkdown, configNode, configNtnyq, configPerfectionist, configPinia, configPnpm, configPrettier, configRegexp, configSVGO, configSort, configSpecials, configTest, configToml, configTypeScript, configUnicorn, configUnoCSS, configUnusedImports, configVue, configYml, defineESLintConfig, ensurePackages, getOverrides, hasPinia, hasShadcnVue, hasTypeScript, hasUnoCSS, hasVitest, hasVue, interopDefault, isInGitHooksOrRunBySpecifyPackages, mergePrettierOptions, index_d as parserPlain, resolveSubOptions };
16355
+ export type { AccessorPairs, AntfuConsistentChaining, AntfuConsistentListNewline, AntfuIndentUnindent, ArrayBracketNewline, ArrayBracketSpacing, ArrayCallbackReturn, ArrayElementNewline, Arrayable, ArrowBodyStyle, ArrowParens, ArrowSpacing, Awaitable, BlockSpacing, BraceStyle, CallbackReturn, Camelcase, CapitalizedComments, ClassMethodsUseThis, CommaDangle, CommaSpacing, CommaStyle, Complexity, ComputedPropertySpacing, ConfigAntfuOptions, ConfigCommandOptions, ConfigDeMorganOptions, ConfigDependOptions, ConfigESLintCommentsOptions, ConfigESLintPluginOptions, ConfigFormatOptions, ConfigGitHubActionOptions, ConfigGitIgnoreOptions, ConfigIgnoresOptions, ConfigImportXOptions, ConfigJavaScriptOptions, ConfigJsdocOptions, ConfigJsoncOptions, ConfigMarkdownOptions, ConfigNames, ConfigNodeOptions, ConfigNtnyqOptions, ConfigOptions, ConfigOptionsInternal, ConfigPerfectionistOptions, ConfigPiniaOptions, ConfigPnpmOptions, ConfigPrettierOptions, ConfigRegexpOptions, ConfigSVGOOptions, ConfigSortOptions, ConfigSpecialsOptions, ConfigTestOptions, ConfigTomlOptions, ConfigTypeScriptOptions, ConfigUnicornOptions, ConfigUnoCSSOptions, ConfigUnusedImportsOptions, ConfigVueOptions, ConfigYmlOptions, ConsistentReturn, ConsistentThis, Curly, DefaultCase, DependBanDependencies, DotLocation, DotNotation, ESLintConfig, ESLintParser, ESLintParserOptions, ESLintProcessor, ESLintRuleSeverity, ESLintRulesRecord, EolLast, Eqeqeq, EslintCommunityEslintCommentsDisableEnablePair, EslintCommunityEslintCommentsNoRestrictedDisable, EslintCommunityEslintCommentsNoUse, EslintCommunityEslintCommentsRequireDescription, EslintPluginConsistentOutput, EslintPluginMetaPropertyOrdering, EslintPluginNoPropertyInNode, EslintPluginReportMessageFormat, EslintPluginRequireMetaDocsDescription, EslintPluginRequireMetaDocsRecommended, EslintPluginRequireMetaDocsUrl, EslintPluginRequireMetaFixable, EslintPluginRequireMetaSchema, EslintPluginTestCasePropertyOrdering, EslintPluginTestCaseShorthandStrings, FormatDprint, FormatPrettier, FuncCallSpacing, FuncNameMatching, FuncNames, FuncStyle, FunctionCallArgumentNewline, FunctionParenNewline, GeneratorStarSpacing, GetterReturn, GithubActionActionNameCasing, GithubActionJobIdCasing, GithubActionMaxJobsPerAction, GithubActionPreferFileExtension, GithubActionPreferStepUsesStyle, GroupedAccessorPairs, HandleCallbackErr, IdBlacklist, IdDenylist, IdLength, IdMatch, ImplicitArrowLinebreak, ImportXConsistentTypeSpecifierStyle, ImportXDynamicImportChunkname, ImportXExtensions, ImportXFirst, ImportXImportsFirst, ImportXMaxDependencies, ImportXNamed, ImportXNamespace, ImportXNewlineAfterImport, ImportXNoAbsolutePath, ImportXNoAnonymousDefaultExport, ImportXNoCommonjs, ImportXNoCycle, ImportXNoDuplicates, ImportXNoDynamicRequire, ImportXNoExtraneousDependencies, ImportXNoImportModuleExports, ImportXNoInternalModules, ImportXNoNamespace, ImportXNoNodejsModules, ImportXNoRelativePackages, ImportXNoRelativeParentImports, ImportXNoRenameDefault, ImportXNoRestrictedPaths, ImportXNoUnassignedImport, ImportXNoUnresolved, ImportXNoUnusedModules, ImportXNoUselessPathSegments, ImportXOrder, ImportXPreferDefaultExport, Indent, IndentLegacy, InitDeclarations, InteropModuleDefault, JsdocCheckExamples, JsdocCheckIndentation, JsdocCheckLineAlignment, JsdocCheckParamNames, JsdocCheckPropertyNames, JsdocCheckTagNames, JsdocCheckTypes, JsdocCheckValues, JsdocConvertToJsdocComments, JsdocEmptyTags, JsdocImplementsOnClasses, JsdocInformativeDocs, JsdocLinesBeforeBlock, JsdocMatchDescription, JsdocMatchName, JsdocMultilineBlocks, JsdocNoBadBlocks, JsdocNoBlankBlocks, JsdocNoDefaults, JsdocNoMissingSyntax, JsdocNoMultiAsterisks, JsdocNoRestrictedSyntax, JsdocNoTypes, JsdocNoUndefinedTypes, JsdocRequireAsteriskPrefix, JsdocRequireDescription, JsdocRequireDescriptionCompleteSentence, JsdocRequireExample, JsdocRequireFileOverview, JsdocRequireHyphenBeforeParamDescription, JsdocRequireJsdoc, JsdocRequireParam, JsdocRequireParamDescription, JsdocRequireParamName, JsdocRequireParamType, JsdocRequireReturns, JsdocRequireReturnsCheck, JsdocRequireReturnsDescription, JsdocRequireReturnsType, JsdocRequireTemplate, JsdocRequireThrows, JsdocRequireYields, JsdocRequireYieldsCheck, JsdocSortTags, JsdocTagLines, JsdocTextEscaping, JsdocValidTypes, JsoncArrayBracketNewline, JsoncArrayBracketSpacing, JsoncArrayElementNewline, JsoncCommaDangle, JsoncCommaStyle, JsoncIndent, JsoncKeyNameCasing, JsoncKeySpacing, JsoncNoIrregularWhitespace, JsoncObjectCurlyNewline, JsoncObjectCurlySpacing, JsoncObjectPropertyNewline, JsoncQuoteProps, JsoncQuotes, JsoncSortArrayValues, JsoncSortKeys, JsoncSpaceUnaryOps, JsxQuotes, KeySpacing, KeywordSpacing, LineCommentPosition, LinebreakStyle, LinesAroundComment, LinesAroundDirective, LinesBetweenClassMembers, LogicalAssignmentOperators, MarkdownFencedCodeLanguage, MarkdownNoHtml, MaxClassesPerFile, MaxDepth, MaxLen, MaxLines, MaxLinesPerFunction, MaxNestedCallbacks, MaxParams, MaxStatements, MaxStatementsPerLine, MultilineCommentStyle, MultilineTernary, NewCap, NewParens, NewlineAfterVar, NewlinePerChainedCall, NoBitwise, NoCondAssign, NoConfusingArrow, NoConsole, NoConstantCondition, NoDuplicateImports, NoElseReturn, NoEmpty, NoEmptyFunction, NoEmptyPattern, NoEval, NoExtendNative, NoExtraBooleanCast, NoExtraParens, NoFallthrough, NoGlobalAssign, NoImplicitCoercion, NoImplicitGlobals, NoInlineComments, NoInnerDeclarations, NoInvalidRegexp, NoInvalidThis, NoIrregularWhitespace, NoLabels, NoMagicNumbers, NoMisleadingCharacterClass, NoMixedOperators, NoMixedRequires, NoMixedSpacesAndTabs, NoMultiAssign, NoMultiSpaces, NoMultipleEmptyLines, NoNativeReassign, NoOnlyTestsNoOnlyTests, NoParamReassign, NoPlusplus, NoPromiseExecutorReturn, NoRedeclare, NoRestrictedExports, NoRestrictedGlobals, NoRestrictedImports, NoRestrictedModules, NoRestrictedProperties, NoRestrictedSyntax, NoReturnAssign, NoSelfAssign, NoSequences, NoShadow, NoSync, NoTabs, NoTrailingSpaces, NoUndef, NoUnderscoreDangle, NoUnneededTernary, NoUnreachableLoop, NoUnsafeNegation, NoUnsafeOptionalChaining, NoUnusedExpressions, NoUnusedVars, NoUseBeforeDefine, NoUselessComputedKey, NoUselessRename, NoVoid, NoWarningComments, NodeCallbackReturn, NodeExportsStyle, NodeFileExtensionInImport, NodeHandleCallbackErr, NodeHashbang, NodeNoDeprecatedApi, NodeNoExtraneousImport, NodeNoExtraneousRequire, NodeNoHideCoreModules, NodeNoMissingImport, NodeNoMissingRequire, NodeNoMixedRequires, NodeNoProcessEnv, NodeNoRestrictedImport, NodeNoRestrictedRequire, NodeNoSync, NodeNoUnpublishedBin, NodeNoUnpublishedImport, NodeNoUnpublishedRequire, NodeNoUnsupportedFeaturesEsBuiltins, NodeNoUnsupportedFeaturesEsSyntax, NodeNoUnsupportedFeaturesNodeBuiltins, NodePreferGlobalBuffer, NodePreferGlobalConsole, NodePreferGlobalProcess, NodePreferGlobalTextDecoder, NodePreferGlobalTextEncoder, NodePreferGlobalUrl, NodePreferGlobalUrlSearchParams, NodePreferNodeProtocol, NodeShebang, NonblockStatementBodyPosition, NtnyqNoDuplicateExports, NtnyqPreferNewlineAfterFileHeader, ObjectCurlyNewline, ObjectCurlySpacing, ObjectPropertyNewline, ObjectShorthand, OneVar, OneVarDeclarationPerLine, OperatorAssignment, OperatorLinebreak, OptionsFiles, OptionsIgnores, OptionsOverrides, OptionsShareable, PaddedBlocks, PaddingLineBetweenStatements, PerfectionistPartitionByComment, PerfectionistSortArrayIncludes, PerfectionistSortClasses, PerfectionistSortDecorators, PerfectionistSortEnums, PerfectionistSortExports, PerfectionistSortHeritageClauses, PerfectionistSortInterfaces, PerfectionistSortIntersectionTypes, PerfectionistSortJsxProps, PerfectionistSortMaps, PerfectionistSortModules, PerfectionistSortNamedExports, PerfectionistSortNamedImports, PerfectionistSortObjectTypes, PerfectionistSortObjects, PerfectionistSortSets, PerfectionistSortSwitchCase, PerfectionistSortUnionTypes, PerfectionistSortVariableDeclarations, PiniaPreferUseStoreNamingConvention, PnpmJsonEnforceCatalog, PnpmJsonPreferWorkspaceSettings, PnpmJsonValidCatalog, PnpmYamlNoDuplicateCatalogItem, PreferArrowCallback, PreferConst, PreferDestructuring, PreferPromiseRejectErrors, PreferReflect, PreferRegexLiterals, PrettierOptions, PrettierPrettier, Pretty, QuoteProps, Quotes, Radix, RegexpHexadecimalEscape, RegexpLetterCase, RegexpMatchAny, RegexpNoDupeDisjunctions, RegexpNoLazyEnds, RegexpNoLegacyFeatures, RegexpNoMisleadingCapturingGroup, RegexpNoMisleadingUnicodeCharacter, RegexpNoMissingGFlag, RegexpNoObscureRange, RegexpNoSuperLinearBacktracking, RegexpNoSuperLinearMove, RegexpNoUnusedCapturingGroup, RegexpNoUselessCharacterClass, RegexpNoUselessFlag, RegexpNoUselessNonCapturingGroup, RegexpOptimalQuantifierConcatenation, RegexpPreferCharacterClass, RegexpPreferD, RegexpPreferLookaround, RegexpPreferNamedReplacement, RegexpPreferRange, RegexpPreferResultArrayGroups, RegexpSortCharacterClassElements, RegexpUnicodeEscape, RegexpUnicodeProperty, RequireAtomicUpdates, RequireUnicodeRegexp, ResolvedOptions, RestSpreadSpacing, RuleOptions, Semi, SemiSpacing, SemiStyle, SortImports, SortKeys, SortVars, SpaceBeforeBlocks, SpaceBeforeFunctionParen, SpaceInParens, SpaceInfixOps, SpaceUnaryOps, SpacedComment, Strict, SvgoSvgo, SwitchColonSpacing, TSESLintParserOptions, TemplateCurlySpacing, TemplateTagSpacing, TomlArrayBracketNewline, TomlArrayBracketSpacing, TomlArrayElementNewline, TomlCommaStyle, TomlIndent, TomlInlineTableCurlySpacing, TomlKeySpacing, TomlNoMixedTypeInArray, TomlNoNonDecimalInteger, TomlPrecisionOfFractionalSeconds, TomlPrecisionOfInteger, TomlQuotedKeys, TomlSpacedComment, TomlTableBracketSpacing, TypedConfigItem, TypescriptEslintArrayType, TypescriptEslintBanTsComment, TypescriptEslintClassLiteralPropertyStyle, TypescriptEslintClassMethodsUseThis, TypescriptEslintConsistentGenericConstructors, TypescriptEslintConsistentIndexedObjectStyle, TypescriptEslintConsistentReturn, TypescriptEslintConsistentTypeAssertions, TypescriptEslintConsistentTypeDefinitions, TypescriptEslintConsistentTypeExports, TypescriptEslintConsistentTypeImports, TypescriptEslintDotNotation, TypescriptEslintExplicitFunctionReturnType, TypescriptEslintExplicitMemberAccessibility, TypescriptEslintExplicitModuleBoundaryTypes, TypescriptEslintInitDeclarations, TypescriptEslintMaxParams, TypescriptEslintMemberOrdering, TypescriptEslintMethodSignatureStyle, TypescriptEslintNamingConvention, TypescriptEslintNoBaseToString, TypescriptEslintNoConfusingVoidExpression, TypescriptEslintNoDeprecated, TypescriptEslintNoDuplicateTypeConstituents, TypescriptEslintNoEmptyFunction, TypescriptEslintNoEmptyInterface, TypescriptEslintNoEmptyObjectType, TypescriptEslintNoExplicitAny, TypescriptEslintNoExtraneousClass, TypescriptEslintNoFloatingPromises, TypescriptEslintNoInferrableTypes, TypescriptEslintNoInvalidThis, TypescriptEslintNoInvalidVoidType, TypescriptEslintNoMagicNumbers, TypescriptEslintNoMeaninglessVoidOperator, TypescriptEslintNoMisusedPromises, TypescriptEslintNoMisusedSpread, TypescriptEslintNoNamespace, TypescriptEslintNoRedeclare, TypescriptEslintNoRequireImports, TypescriptEslintNoRestrictedImports, TypescriptEslintNoRestrictedTypes, TypescriptEslintNoShadow, TypescriptEslintNoThisAlias, TypescriptEslintNoTypeAlias, TypescriptEslintNoUnnecessaryBooleanLiteralCompare, TypescriptEslintNoUnnecessaryCondition, TypescriptEslintNoUnnecessaryTypeAssertion, TypescriptEslintNoUnusedExpressions, TypescriptEslintNoUnusedVars, TypescriptEslintNoUseBeforeDefine, TypescriptEslintNoVarRequires, TypescriptEslintOnlyThrowError, TypescriptEslintParameterProperties, TypescriptEslintPreferDestructuring, TypescriptEslintPreferLiteralEnumMember, TypescriptEslintPreferNullishCoalescing, TypescriptEslintPreferOptionalChain, TypescriptEslintPreferPromiseRejectErrors, TypescriptEslintPreferReadonly, TypescriptEslintPreferReadonlyParameterTypes, TypescriptEslintPreferStringStartsEndsWith, TypescriptEslintPromiseFunctionAsync, TypescriptEslintRequireArraySortCompare, TypescriptEslintRestrictPlusOperands, TypescriptEslintRestrictTemplateExpressions, TypescriptEslintReturnAwait, TypescriptEslintSortTypeConstituents, TypescriptEslintStrictBooleanExpressions, TypescriptEslintSwitchExhaustivenessCheck, TypescriptEslintTripleSlashReference, TypescriptEslintTypedef, TypescriptEslintUnboundMethod, TypescriptEslintUnifiedSignatures, UnicodeBom, UnicornBetterRegex, UnicornCatchErrorName, UnicornConsistentFunctionScoping, UnicornEscapeCase, UnicornExpiringTodoComments, UnicornExplicitLengthCheck, UnicornFilenameCase, UnicornImportStyle, UnicornNoArrayPushPush, UnicornNoArrayReduce, UnicornNoInstanceofBuiltins, UnicornNoKeywordPrefix, UnicornNoNull, UnicornNoTypeofUndefined, UnicornNoUnnecessaryPolyfills, UnicornNoUselessUndefined, UnicornNumberLiteralCase, UnicornNumericSeparatorsStyle, UnicornPreferAddEventListener, UnicornPreferArrayFind, UnicornPreferArrayFlat, UnicornPreferAt, UnicornPreferExportFrom, UnicornPreferNumberProperties, UnicornPreferObjectFromEntries, UnicornPreferStructuredClone, UnicornPreferSwitch, UnicornPreferTernary, UnicornPreventAbbreviations, UnicornRelativeUrlStyle, UnicornStringContent, UnicornSwitchCaseBraces, UnicornTemplateIndent, UnocssEnforceClassCompile, UnusedImportsNoUnusedImports, UnusedImportsNoUnusedVars, UseIsnan, ValidTypeof, VitestConsistentTestFilename, VitestConsistentTestIt, VitestExpectExpect, VitestMaxExpects, VitestMaxNestedDescribe, VitestNoFocusedTests, VitestNoHooks, VitestNoLargeSnapshots, VitestNoRestrictedMatchers, VitestNoRestrictedViMethods, VitestNoStandaloneExpect, VitestPreferExpectAssertions, VitestPreferLowercaseTitle, VitestPreferSnapshotHint, VitestRequireHook, VitestRequireMockTypeParameters, VitestRequireTopLevelDescribe, VitestValidExpect, VitestValidTitle, VueArrayBracketNewline, VueArrayBracketSpacing, VueArrayElementNewline, VueArrowSpacing, VueAttributeHyphenation, VueAttributesOrder, VueBlockLang, VueBlockOrder, VueBlockSpacing, VueBlockTagNewline, VueBraceStyle, VueCamelcase, VueCommaDangle, VueCommaSpacing, VueCommaStyle, VueCommentDirective, VueComponentApiStyle, VueComponentDefinitionNameCasing, VueComponentNameInTemplateCasing, VueComponentOptionsNameCasing, VueCustomEventNameCasing, VueDefineEmitsDeclaration, VueDefineMacrosOrder, VueDefinePropsDeclaration, VueDotLocation, VueDotNotation, VueEnforceStyleAttribute, VueEqeqeq, VueFirstAttributeLinebreak, VueFuncCallSpacing, VueHtmlButtonHasType, VueHtmlClosingBracketNewline, VueHtmlClosingBracketSpacing, VueHtmlCommentContentNewline, VueHtmlCommentContentSpacing, VueHtmlCommentIndent, VueHtmlIndent, VueHtmlQuotes, VueHtmlSelfClosing, VueKeySpacing, VueKeywordSpacing, VueMatchComponentFileName, VueMaxAttributesPerLine, VueMaxLen, VueMaxLinesPerBlock, VueMaxProps, VueMaxTemplateDepth, VueMultiWordComponentNames, VueMultilineHtmlElementContentNewline, VueMultilineTernary, VueMustacheInterpolationSpacing, VueNewLineBetweenMultiLineProperty, VueNextTickStyle, VueNoBareStringsInTemplate, VueNoBooleanDefault, VueNoChildContent, VueNoConsole, VueNoConstantCondition, VueNoDeprecatedModelDefinition, VueNoDeprecatedRouterLinkTagProp, VueNoDeprecatedSlotAttribute, VueNoDupeKeys, VueNoDuplicateAttrInheritance, VueNoDuplicateAttributes, VueNoEmptyPattern, VueNoExtraParens, VueNoImplicitCoercion, VueNoIrregularWhitespace, VueNoLoneTemplate, VueNoMultiSpaces, VueNoMutatingProps, VueNoParsingError, VueNoPotentialComponentOptionTypo, VueNoRequiredPropWithDefault, VueNoReservedComponentNames, VueNoReservedKeys, VueNoReservedProps, VueNoRestrictedBlock, VueNoRestrictedCallAfterAwait, VueNoRestrictedClass, VueNoRestrictedComponentNames, VueNoRestrictedComponentOptions, VueNoRestrictedCustomEvent, VueNoRestrictedHtmlElements, VueNoRestrictedProps, VueNoRestrictedStaticAttribute, VueNoRestrictedSyntax, VueNoRestrictedVBind, VueNoRestrictedVOn, VueNoStaticInlineStyles, VueNoTemplateShadow, VueNoTemplateTargetBlank, VueNoUndefComponents, VueNoUndefProperties, VueNoUnsupportedFeatures, VueNoUnusedComponents, VueNoUnusedProperties, VueNoUnusedVars, VueNoUseVIfWithVFor, VueNoUselessMustaches, VueNoUselessVBind, VueNoVTextVHtmlOnComponent, VueObjectCurlyNewline, VueObjectCurlySpacing, VueObjectPropertyNewline, VueObjectShorthand, VueOperatorLinebreak, VueOrderInComponents, VuePaddingLineBetweenBlocks, VuePaddingLineBetweenTags, VuePaddingLinesInComponentDefinition, VuePreferTrueAttributeShorthand, VuePropNameCasing, VueQuoteProps, VueRequireDirectExport, VueRequireExplicitEmits, VueRequireMacroVariableName, VueRequirePropComment, VueRequireToggleInsideTransition, VueRestrictedComponentNames, VueReturnInComputedProperty, VueScriptIndent, VueSinglelineHtmlElementContentNewline, VueSlotNameCasing, VueSortKeys, VueSpaceInParens, VueSpaceInfixOps, VueSpaceUnaryOps, VueTemplateCurlySpacing, VueThisInTemplate, VueVBindStyle, VueVForDelimiterStyle, VueVOnEventHyphenation, VueVOnHandlerStyle, VueVOnStyle, VueVSlotStyle, VueValidVOn, VueValidVSlot, WrapIife, YieldStarSpacing, YmlBlockMapping, YmlBlockMappingColonIndicatorNewline, YmlBlockMappingQuestionIndicatorNewline, YmlBlockSequence, YmlBlockSequenceHyphenIndicatorNewline, YmlFileExtension, YmlFlowMappingCurlyNewline, YmlFlowMappingCurlySpacing, YmlFlowSequenceBracketNewline, YmlFlowSequenceBracketSpacing, YmlIndent, YmlKeyNameCasing, YmlKeySpacing, YmlNoIrregularWhitespace, YmlNoMultipleEmptyLines, YmlPlainScalar, YmlQuotes, YmlSortKeys, YmlSortSequenceValues, YmlSpacedComment, Yoda, _ArrayElementNewlineBasicConfig, _CommaDangleValue, _CommaDangleValueWithIgnore, _FuncNamesValue, _JsoncArrayElementNewlineBasicConfig, _JsoncCommaDangleValue, _JsoncCommaDangleValueWithIgnore, _PaddingLineBetweenStatementsPaddingType, _PaddingLineBetweenStatementsStatementType, _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType, _PerfectionistSortImportsSortImports, _PerfectionistSortImports_IsLineLength, _TomlArrayElementNewlineBasicConfig, _TypescriptEslintNamingConventionFormatOptionsConfig, _TypescriptEslintNamingConventionPredefinedFormats, _TypescriptEslintNamingConventionTypeModifiers, _TypescriptEslintNamingConventionUnderscoreOptions, _TypescriptEslintNamingConvention_MatchRegexConfig, _TypescriptEslintNamingConvention_PrefixSuffixConfig, _UnicornImportStyleStyles, _UnicornImportStyle_BooleanObject, _UnicornImportStyle_ModuleStyles, _UnicornPreventAbbreviationsReplacements, _UnicornPreventAbbreviations_Abbreviations, _UnicornPreventAbbreviations_BooleanObject, _VueArrayElementNewlineBasicConfig, _VueCommaDangleValue, _VueCommaDangleValueWithIgnore, _VueHtmlSelfClosingOptionValue };
package/dist/index.mjs CHANGED
@@ -1770,38 +1770,55 @@ const PERFECTIONIST_SORT_IMPORTS_GROUPS = [
1770
1770
  // Side effect style imports (e.g. 'normalize.css')
1771
1771
  "side-effect-style",
1772
1772
  // Styles (e.g. *.{css,scss,less})
1773
- "style",
1773
+ "value-style",
1774
1774
  // Node.js built-in modules. (e.g. fs, path)
1775
- "builtin",
1775
+ "value-builtin",
1776
1776
  // External modules installed in the project (e.g. vue, lodash)
1777
- "external",
1777
+ "value-external",
1778
+ // Node.js subpath imports (e.g. fs/promises)
1779
+ "value-subpath",
1778
1780
  // Internal modules (e.g. @/utils, @/components)
1779
- "internal",
1781
+ "value-internal",
1780
1782
  // Modules from parent directory (e.g. ../utils)
1781
- "parent",
1783
+ "value-parent",
1782
1784
  // Modules from the same directory (e.g. ./utils)
1783
- "sibling",
1785
+ "value-sibling",
1784
1786
  // Main file from the current directory (e.g. ./index)
1785
- "index",
1786
- // TypeScript object-imports (e.g. import log = console.log)
1787
- "object",
1787
+ "value-index",
1788
+ // TypeScript import-equals imports (e.g. import log = console.log)
1789
+ "ts-equals-import",
1788
1790
  // Side effect imports (e.g. import 'babel-polyfill')
1789
1791
  "side-effect",
1790
1792
  /**
1791
1793
  * Type import at the end
1792
1794
  */
1793
- "builtin-type",
1794
- "external-type",
1795
- "internal-type",
1796
- "parent-type",
1797
- "sibling-type",
1798
- "index-type",
1799
- "type",
1795
+ "type-builtin",
1796
+ "type-external",
1797
+ "type-subpath",
1798
+ "type-internal",
1799
+ "type-parent",
1800
+ "type-sibling",
1801
+ "type-index",
1800
1802
  /**
1801
1803
  * Imports that don’t fit into any other group
1802
1804
  */
1803
1805
  "unknown"
1804
1806
  ];
1807
+ const PERFECTIONIST_SORT_EXPORTS_GROUPS = [
1808
+ "value-export",
1809
+ "type-export",
1810
+ "unknown"
1811
+ ];
1812
+ const PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS = [
1813
+ "value-export",
1814
+ "type-export",
1815
+ "unknown"
1816
+ ];
1817
+ const PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS = [
1818
+ "value-import",
1819
+ "type-import",
1820
+ "unknown"
1821
+ ];
1805
1822
  const PERFECTIONIST_SORT_CLASSES_GROUPS = ["unknown"];
1806
1823
 
1807
1824
  const configFormat = async (options = {}) => {
@@ -2988,8 +3005,8 @@ const configPerfectionist = (options = {}) => {
2988
3005
  "perfectionist/sort-exports": [
2989
3006
  "error",
2990
3007
  {
2991
- ...commonRuleOptionsWithPartitionByComment,
2992
- groupKind: "values-first",
3008
+ ...commonRuleOptionsWithBoth,
3009
+ groups: PERFECTIONIST_SORT_EXPORTS_GROUPS,
2993
3010
  type: "line-length"
2994
3011
  }
2995
3012
  ],
@@ -3004,16 +3021,16 @@ const configPerfectionist = (options = {}) => {
3004
3021
  "perfectionist/sort-named-exports": [
3005
3022
  "error",
3006
3023
  {
3007
- ...commonRuleOptionsWithPartitionByComment,
3008
- groupKind: "values-first",
3024
+ ...commonRuleOptionsWithBoth,
3025
+ groups: PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS,
3009
3026
  ignoreAlias: false
3010
3027
  }
3011
3028
  ],
3012
3029
  "perfectionist/sort-named-imports": [
3013
3030
  "error",
3014
3031
  {
3015
- ...commonRuleOptionsWithPartitionByComment,
3016
- groupKind: "values-first",
3032
+ ...commonRuleOptionsWithBoth,
3033
+ groups: PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS,
3017
3034
  ignoreAlias: false
3018
3035
  }
3019
3036
  ]
@@ -3490,4 +3507,4 @@ function defineESLintConfig(options = {}, ...userConfigs) {
3490
3507
  return composer;
3491
3508
  }
3492
3509
 
3493
- export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML, PERFECTIONIST_COMMON_RULE_OPTIONS, PERFECTIONIST_EXTRA_RULE_OPTIONS, PERFECTIONIST_SORT_CLASSES_GROUPS, PERFECTIONIST_SORT_IMPORTS_GROUPS, PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS, PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS, PERFECTIONIST_SORT_OBJECTS_GROUPS, PRETTIER_DEFAULT_OPTIONS, combineConfigs, configAntfu, configCommand, configDeMorgan, configDepend, configESLintComments, configESLintPlugin, configFormat, configGitHubAction, configGitIgnore, configIgnores, configImportX, configJSX, configJavaScript, configJsdoc, configJsonc, configMarkdown, configNode, configNtnyq, configPerfectionist, configPinia, configPnpm, configPrettier, configRegexp, configSVGO, configSort, configSpecials, configTest, configToml, configTypeScript, configUnicorn, configUnoCSS, configUnusedImports, configVue, configYml, defineESLintConfig, ensurePackages, getOverrides, hasPinia, hasShadcnVue, hasTypeScript, hasUnoCSS, hasVitest, hasVue, interopDefault, isInGitHooksOrRunBySpecifyPackages, mergePrettierOptions, parserPlain, resolveSubOptions };
3510
+ export { GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_DIST, GLOB_DTS, GLOB_EXCLUDE, GLOB_GITHUB_ACTION, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSON_SCHEMA, GLOB_JSX, GLOB_JSX_ONLY, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_NESTED, GLOB_NODE_MODULES, GLOB_PACKAGE_JSON, GLOB_PINIA_STORE, GLOB_PNPM_WORKSPACE_YAML, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVG, GLOB_TEST, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG_JSON, GLOB_TSX, GLOB_TSX_ONLY, GLOB_TYPES, GLOB_TYPE_TEST, GLOB_VUE, GLOB_YAML, PERFECTIONIST_COMMON_RULE_OPTIONS, PERFECTIONIST_EXTRA_RULE_OPTIONS, PERFECTIONIST_SORT_CLASSES_GROUPS, PERFECTIONIST_SORT_EXPORTS_GROUPS, PERFECTIONIST_SORT_IMPORTS_GROUPS, PERFECTIONIST_SORT_INTERFACES_OR_OBJECT_TYPES_GROUPS, PERFECTIONIST_SORT_INTERSECTION_TYPES_OR_UNION_TYPES_GROUPS, PERFECTIONIST_SORT_NAMED_EXPORTS_GROUPS, PERFECTIONIST_SORT_NAMED_IMPORTS_GROUPS, PERFECTIONIST_SORT_OBJECTS_GROUPS, PRETTIER_DEFAULT_OPTIONS, combineConfigs, configAntfu, configCommand, configDeMorgan, configDepend, configESLintComments, configESLintPlugin, configFormat, configGitHubAction, configGitIgnore, configIgnores, configImportX, configJSX, configJavaScript, configJsdoc, configJsonc, configMarkdown, configNode, configNtnyq, configPerfectionist, configPinia, configPnpm, configPrettier, configRegexp, configSVGO, configSort, configSpecials, configTest, configToml, configTypeScript, configUnicorn, configUnoCSS, configUnusedImports, configVue, configYml, defineESLintConfig, ensurePackages, getOverrides, hasPinia, hasShadcnVue, hasTypeScript, hasUnoCSS, hasVitest, hasVue, interopDefault, isInGitHooksOrRunBySpecifyPackages, mergePrettierOptions, parserPlain, resolveSubOptions };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ntnyq/eslint-config",
3
3
  "type": "module",
4
- "version": "4.0.4",
5
- "packageManager": "pnpm@10.8.1",
4
+ "version": "4.1.0",
5
+ "packageManager": "pnpm@10.9.0",
6
6
  "description": "An opinionated ESLint config preset of ntnyq",
7
7
  "keywords": [
8
8
  "eslint",
@@ -76,26 +76,26 @@
76
76
  "@antfu/install-pkg": "^1.0.0",
77
77
  "@clack/prompts": "^0.10.1",
78
78
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
79
- "@eslint/js": "^9.24.0",
80
- "@eslint/markdown": "^6.3.0",
81
- "@unocss/eslint-plugin": "^66.1.0-beta.11",
82
- "@vitest/eslint-plugin": "^1.1.42",
79
+ "@eslint/js": "^9.25.1",
80
+ "@eslint/markdown": "^6.4.0",
81
+ "@unocss/eslint-plugin": "^66.1.0-beta.12",
82
+ "@vitest/eslint-plugin": "^1.1.43",
83
83
  "eslint-config-flat-gitignore": "^2.1.0",
84
84
  "eslint-flat-config-utils": "^2.0.1",
85
- "eslint-import-resolver-typescript": "^4.3.2",
85
+ "eslint-import-resolver-typescript": "^4.3.4",
86
86
  "eslint-merge-processors": "^2.0.0",
87
87
  "eslint-plugin-antfu": "^3.1.1",
88
88
  "eslint-plugin-command": "^3.2.0",
89
89
  "eslint-plugin-de-morgan": "^1.2.1",
90
90
  "eslint-plugin-depend": "^1.0.0",
91
91
  "eslint-plugin-github-action": "^0.0.15",
92
- "eslint-plugin-import-x": "^4.10.3",
93
- "eslint-plugin-jsdoc": "^50.6.9",
92
+ "eslint-plugin-import-x": "^4.11.0",
93
+ "eslint-plugin-jsdoc": "^50.6.11",
94
94
  "eslint-plugin-jsonc": "^2.20.0",
95
95
  "eslint-plugin-n": "^17.17.0",
96
96
  "eslint-plugin-no-only-tests": "^3.3.0",
97
97
  "eslint-plugin-ntnyq": "^0.11.0",
98
- "eslint-plugin-perfectionist": "^4.11.0",
98
+ "eslint-plugin-perfectionist": "^4.12.3",
99
99
  "eslint-plugin-pinia": "^0.4.1",
100
100
  "eslint-plugin-pnpm": "^0.3.1",
101
101
  "eslint-plugin-prettier": "^5.2.6",
@@ -104,22 +104,22 @@
104
104
  "eslint-plugin-toml": "^0.12.0",
105
105
  "eslint-plugin-unicorn": "^58.0.0",
106
106
  "eslint-plugin-vue": "^10.0.0",
107
- "eslint-plugin-yml": "^1.17.0",
107
+ "eslint-plugin-yml": "^1.18.0",
108
108
  "eslint-processor-vue-blocks": "^2.0.0",
109
109
  "globals": "^16.0.0",
110
110
  "jsonc-eslint-parser": "^2.4.0",
111
111
  "local-pkg": "^1.1.1",
112
112
  "prettier": "^3.5.3",
113
113
  "toml-eslint-parser": "^0.10.0",
114
- "typescript-eslint": "^8.30.1",
114
+ "typescript-eslint": "^8.31.0",
115
115
  "vue-eslint-parser": "^10.1.3",
116
116
  "yaml-eslint-parser": "^1.3.0"
117
117
  },
118
118
  "devDependencies": {
119
119
  "@ntnyq/prettier-config": "^2.0.0",
120
- "@types/node": "^22.14.1",
120
+ "@types/node": "^22.15.2",
121
121
  "bumpp": "^10.1.0",
122
- "eslint": "^9.24.0",
122
+ "eslint": "^9.25.1",
123
123
  "eslint-parser-plain": "^0.1.1",
124
124
  "eslint-plugin-eslint-plugin": "^6.4.0",
125
125
  "eslint-typegen": "^2.1.0",
@@ -127,12 +127,12 @@
127
127
  "jiti": "^2.4.2",
128
128
  "nano-staged": "^0.8.0",
129
129
  "npm-run-all2": "^7.0.2",
130
- "tinyglobby": "^0.2.12",
130
+ "tinyglobby": "^0.2.13",
131
131
  "tsx": "^4.19.3",
132
132
  "typescript": "^5.8.3",
133
133
  "unbuild": "^3.5.0",
134
- "uncase": "^0.0.4",
135
- "vitest": "^3.1.1"
134
+ "uncase": "^0.1.0",
135
+ "vitest": "^3.1.2"
136
136
  },
137
137
  "engines": {
138
138
  "node": ">=18.18.0"