@kitschpatrol/eslint-config 7.6.0 → 7.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +1 -1
- package/dist/index.d.ts +159 -102
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -2037,44 +2037,44 @@ interface RuleOptions {
|
|
|
2037
2037
|
/**
|
|
2038
2038
|
* Enforce that names for bin properties are in kebab case.
|
|
2039
2039
|
*
|
|
2040
|
-
* @see https://
|
|
2040
|
+
* @see https://eslint-plugin-package-json.dev/rules/bin-name-casing
|
|
2041
2041
|
*/
|
|
2042
2042
|
'json-package/bin-name-casing'?: Linter.RuleEntry<[]>;
|
|
2043
2043
|
/**
|
|
2044
2044
|
* Enforce consistent format for the exports field (implicit or explicit
|
|
2045
2045
|
* subpaths).
|
|
2046
2046
|
*
|
|
2047
|
-
* @see https://
|
|
2047
|
+
* @see https://eslint-plugin-package-json.dev/rules/exports-subpaths-style
|
|
2048
2048
|
*/
|
|
2049
2049
|
'json-package/exports-subpaths-style'?: Linter.RuleEntry<JsonPackageExportsSubpathsStyle>;
|
|
2050
2050
|
/**
|
|
2051
2051
|
* Reports on unnecessary empty arrays and objects.
|
|
2052
2052
|
*
|
|
2053
|
-
* @see https://
|
|
2053
|
+
* @see https://eslint-plugin-package-json.dev/rules/no-empty-fields
|
|
2054
2054
|
*/
|
|
2055
2055
|
'json-package/no-empty-fields'?: Linter.RuleEntry<JsonPackageNoEmptyFields>;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* Prevents adding unnecessary / redundant files.
|
|
2058
2058
|
*
|
|
2059
|
-
* @see https://
|
|
2059
|
+
* @see https://eslint-plugin-package-json.dev/rules/no-redundant-files
|
|
2060
2060
|
*/
|
|
2061
2061
|
'json-package/no-redundant-files'?: Linter.RuleEntry<[]>;
|
|
2062
2062
|
/**
|
|
2063
2063
|
* Warns when publishConfig.access is used in unscoped packages.
|
|
2064
2064
|
*
|
|
2065
|
-
* @see https://
|
|
2065
|
+
* @see https://eslint-plugin-package-json.dev/rules/no-redundant-publishConfig
|
|
2066
2066
|
*/
|
|
2067
2067
|
'json-package/no-redundant-publishConfig'?: Linter.RuleEntry<[]>;
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Package properties should be declared in standard order
|
|
2070
2070
|
*
|
|
2071
|
-
* @see https://
|
|
2071
|
+
* @see https://eslint-plugin-package-json.dev/rules/order-properties
|
|
2072
2072
|
*/
|
|
2073
2073
|
'json-package/order-properties'?: Linter.RuleEntry<JsonPackageOrderProperties>;
|
|
2074
2074
|
/**
|
|
2075
2075
|
* Enforce either object or shorthand declaration for repository.
|
|
2076
2076
|
*
|
|
2077
|
-
* @see https://
|
|
2077
|
+
* @see https://eslint-plugin-package-json.dev/rules/repository-shorthand
|
|
2078
2078
|
*/
|
|
2079
2079
|
'json-package/repository-shorthand'?: Linter.RuleEntry<JsonPackageRepositoryShorthand>;
|
|
2080
2080
|
/**
|
|
@@ -2082,482 +2082,530 @@ interface RuleOptions {
|
|
|
2082
2082
|
* or `contributors` is defined, and that if `contributors` is present, it
|
|
2083
2083
|
* should include at least one contributor.
|
|
2084
2084
|
*
|
|
2085
|
-
* @see https://
|
|
2085
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-attribution
|
|
2086
2086
|
*/
|
|
2087
2087
|
'json-package/require-attribution'?: Linter.RuleEntry<JsonPackageRequireAttribution>;
|
|
2088
2088
|
/**
|
|
2089
2089
|
* Requires the `author` property to be present.
|
|
2090
2090
|
*
|
|
2091
|
-
* @see https://
|
|
2091
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-author
|
|
2092
2092
|
*/
|
|
2093
2093
|
'json-package/require-author'?: Linter.RuleEntry<JsonPackageRequireAuthor>;
|
|
2094
2094
|
/**
|
|
2095
2095
|
* Requires the `bin` property to be present.
|
|
2096
2096
|
*
|
|
2097
|
-
* @see https://
|
|
2097
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bin
|
|
2098
2098
|
*/
|
|
2099
2099
|
'json-package/require-bin'?: Linter.RuleEntry<JsonPackageRequireBin>;
|
|
2100
|
+
/**
|
|
2101
|
+
* Requires the `browser` property to be present.
|
|
2102
|
+
*
|
|
2103
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-browser
|
|
2104
|
+
*/
|
|
2105
|
+
'json-package/require-browser'?: Linter.RuleEntry<JsonPackageRequireBrowser>;
|
|
2100
2106
|
/**
|
|
2101
2107
|
* Requires the `bugs` property to be present.
|
|
2102
2108
|
*
|
|
2103
|
-
* @see https://
|
|
2109
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bugs
|
|
2104
2110
|
*/
|
|
2105
2111
|
'json-package/require-bugs'?: Linter.RuleEntry<JsonPackageRequireBugs>;
|
|
2106
2112
|
/**
|
|
2107
2113
|
* Requires the `bundleDependencies` property to be present.
|
|
2108
2114
|
*
|
|
2109
|
-
* @see https://
|
|
2115
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bundleDependencies
|
|
2110
2116
|
*/
|
|
2111
2117
|
'json-package/require-bundleDependencies'?: Linter.RuleEntry<JsonPackageRequireBundleDependencies>;
|
|
2118
|
+
/**
|
|
2119
|
+
* Requires the `config` property to be present.
|
|
2120
|
+
*
|
|
2121
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-config
|
|
2122
|
+
*/
|
|
2123
|
+
'json-package/require-config'?: Linter.RuleEntry<JsonPackageRequireConfig>;
|
|
2112
2124
|
/**
|
|
2113
2125
|
* Requires the `contributors` property to be present.
|
|
2114
2126
|
*
|
|
2115
|
-
* @see https://
|
|
2127
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-contributors
|
|
2116
2128
|
*/
|
|
2117
2129
|
'json-package/require-contributors'?: Linter.RuleEntry<JsonPackageRequireContributors>;
|
|
2118
2130
|
/**
|
|
2119
2131
|
* Requires the `cpu` property to be present.
|
|
2120
2132
|
*
|
|
2121
|
-
* @see https://
|
|
2133
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-cpu
|
|
2122
2134
|
*/
|
|
2123
2135
|
'json-package/require-cpu'?: Linter.RuleEntry<JsonPackageRequireCpu>;
|
|
2124
2136
|
/**
|
|
2125
2137
|
* Requires the `dependencies` property to be present.
|
|
2126
2138
|
*
|
|
2127
|
-
* @see https://
|
|
2139
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-dependencies
|
|
2128
2140
|
*/
|
|
2129
2141
|
'json-package/require-dependencies'?: Linter.RuleEntry<JsonPackageRequireDependencies>;
|
|
2130
2142
|
/**
|
|
2131
2143
|
* Requires the `description` property to be present.
|
|
2132
2144
|
*
|
|
2133
|
-
* @see https://
|
|
2145
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-description
|
|
2134
2146
|
*/
|
|
2135
2147
|
'json-package/require-description'?: Linter.RuleEntry<JsonPackageRequireDescription>;
|
|
2136
2148
|
/**
|
|
2137
2149
|
* Requires the `devDependencies` property to be present.
|
|
2138
2150
|
*
|
|
2139
|
-
* @see https://
|
|
2151
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-devDependencies
|
|
2140
2152
|
*/
|
|
2141
2153
|
'json-package/require-devDependencies'?: Linter.RuleEntry<JsonPackageRequireDevDependencies>;
|
|
2142
2154
|
/**
|
|
2143
2155
|
* Requires the `devEngines` property to be present.
|
|
2144
2156
|
*
|
|
2145
|
-
* @see https://
|
|
2157
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-devEngines
|
|
2146
2158
|
*/
|
|
2147
2159
|
'json-package/require-devEngines'?: Linter.RuleEntry<JsonPackageRequireDevEngines>;
|
|
2148
2160
|
/**
|
|
2149
2161
|
* Requires the `directories` property to be present.
|
|
2150
2162
|
*
|
|
2151
|
-
* @see https://
|
|
2163
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-directories
|
|
2152
2164
|
*/
|
|
2153
2165
|
'json-package/require-directories'?: Linter.RuleEntry<JsonPackageRequireDirectories>;
|
|
2154
2166
|
/**
|
|
2155
2167
|
* Requires the `engines` property to be present.
|
|
2156
2168
|
*
|
|
2157
|
-
* @see https://
|
|
2169
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-engines
|
|
2158
2170
|
*/
|
|
2159
2171
|
'json-package/require-engines'?: Linter.RuleEntry<JsonPackageRequireEngines>;
|
|
2160
2172
|
/**
|
|
2161
2173
|
* Requires the `exports` property to be present.
|
|
2162
2174
|
*
|
|
2163
|
-
* @see https://
|
|
2175
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-exports
|
|
2164
2176
|
*/
|
|
2165
2177
|
'json-package/require-exports'?: Linter.RuleEntry<JsonPackageRequireExports>;
|
|
2166
2178
|
/**
|
|
2167
2179
|
* Requires the `files` property to be present.
|
|
2168
2180
|
*
|
|
2169
|
-
* @see https://
|
|
2181
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-files
|
|
2170
2182
|
*/
|
|
2171
2183
|
'json-package/require-files'?: Linter.RuleEntry<JsonPackageRequireFiles>;
|
|
2172
2184
|
/**
|
|
2173
2185
|
* Requires the `funding` property to be present.
|
|
2174
2186
|
*
|
|
2175
|
-
* @see https://
|
|
2187
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-funding
|
|
2176
2188
|
*/
|
|
2177
2189
|
'json-package/require-funding'?: Linter.RuleEntry<JsonPackageRequireFunding>;
|
|
2190
|
+
/**
|
|
2191
|
+
* Requires the `gypfile` property to be present.
|
|
2192
|
+
*
|
|
2193
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-gypfile
|
|
2194
|
+
*/
|
|
2195
|
+
'json-package/require-gypfile'?: Linter.RuleEntry<JsonPackageRequireGypfile>;
|
|
2178
2196
|
/**
|
|
2179
2197
|
* Requires the `homepage` property to be present.
|
|
2180
2198
|
*
|
|
2181
|
-
* @see https://
|
|
2199
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-homepage
|
|
2182
2200
|
*/
|
|
2183
2201
|
'json-package/require-homepage'?: Linter.RuleEntry<JsonPackageRequireHomepage>;
|
|
2184
2202
|
/**
|
|
2185
2203
|
* Requires the `keywords` property to be present.
|
|
2186
2204
|
*
|
|
2187
|
-
* @see https://
|
|
2205
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-keywords
|
|
2188
2206
|
*/
|
|
2189
2207
|
'json-package/require-keywords'?: Linter.RuleEntry<JsonPackageRequireKeywords>;
|
|
2208
|
+
/**
|
|
2209
|
+
* Requires the `libc` property to be present.
|
|
2210
|
+
*
|
|
2211
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-libc
|
|
2212
|
+
*/
|
|
2213
|
+
'json-package/require-libc'?: Linter.RuleEntry<JsonPackageRequireLibc>;
|
|
2190
2214
|
/**
|
|
2191
2215
|
* Requires the `license` property to be present.
|
|
2192
2216
|
*
|
|
2193
|
-
* @see https://
|
|
2217
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-license
|
|
2194
2218
|
*/
|
|
2195
2219
|
'json-package/require-license'?: Linter.RuleEntry<JsonPackageRequireLicense>;
|
|
2196
2220
|
/**
|
|
2197
2221
|
* Requires the `main` property to be present.
|
|
2198
2222
|
*
|
|
2199
|
-
* @see https://
|
|
2223
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-main
|
|
2200
2224
|
*/
|
|
2201
2225
|
'json-package/require-main'?: Linter.RuleEntry<JsonPackageRequireMain>;
|
|
2202
2226
|
/**
|
|
2203
2227
|
* Requires the `man` property to be present.
|
|
2204
2228
|
*
|
|
2205
|
-
* @see https://
|
|
2229
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-man
|
|
2206
2230
|
*/
|
|
2207
2231
|
'json-package/require-man'?: Linter.RuleEntry<JsonPackageRequireMan>;
|
|
2208
2232
|
/**
|
|
2209
2233
|
* Requires the `module` property to be present.
|
|
2210
2234
|
*
|
|
2211
|
-
* @see https://
|
|
2235
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-module
|
|
2212
2236
|
*/
|
|
2213
2237
|
'json-package/require-module'?: Linter.RuleEntry<JsonPackageRequireModule>;
|
|
2214
2238
|
/**
|
|
2215
2239
|
* Requires the `name` property to be present.
|
|
2216
2240
|
*
|
|
2217
|
-
* @see https://
|
|
2241
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-name
|
|
2218
2242
|
*/
|
|
2219
2243
|
'json-package/require-name'?: Linter.RuleEntry<JsonPackageRequireName>;
|
|
2220
2244
|
/**
|
|
2221
2245
|
* Requires the `optionalDependencies` property to be present.
|
|
2222
2246
|
*
|
|
2223
|
-
* @see https://
|
|
2247
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-optionalDependencies
|
|
2224
2248
|
*/
|
|
2225
2249
|
'json-package/require-optionalDependencies'?: Linter.RuleEntry<JsonPackageRequireOptionalDependencies>;
|
|
2226
2250
|
/**
|
|
2227
2251
|
* Requires the `os` property to be present.
|
|
2228
2252
|
*
|
|
2229
|
-
* @see https://
|
|
2253
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-os
|
|
2230
2254
|
*/
|
|
2231
2255
|
'json-package/require-os'?: Linter.RuleEntry<JsonPackageRequireOs>;
|
|
2232
2256
|
/**
|
|
2233
2257
|
* Requires the `packageManager` property to be present.
|
|
2234
2258
|
*
|
|
2235
|
-
* @see https://
|
|
2259
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-packageManager
|
|
2236
2260
|
*/
|
|
2237
2261
|
'json-package/require-packageManager'?: Linter.RuleEntry<JsonPackageRequirePackageManager>;
|
|
2238
2262
|
/**
|
|
2239
2263
|
* Requires the `peerDependencies` property to be present.
|
|
2240
2264
|
*
|
|
2241
|
-
* @see https://
|
|
2265
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-peerDependencies
|
|
2242
2266
|
*/
|
|
2243
2267
|
'json-package/require-peerDependencies'?: Linter.RuleEntry<JsonPackageRequirePeerDependencies>;
|
|
2244
2268
|
/**
|
|
2245
2269
|
* Requires the `private` property to be present.
|
|
2246
2270
|
*
|
|
2247
|
-
* @see https://
|
|
2271
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-private
|
|
2248
2272
|
*/
|
|
2249
2273
|
'json-package/require-private'?: Linter.RuleEntry<[]>;
|
|
2250
2274
|
/**
|
|
2251
2275
|
* Requires the `publishConfig` property to be present.
|
|
2252
2276
|
*
|
|
2253
|
-
* @see https://
|
|
2277
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-publishConfig
|
|
2254
2278
|
*/
|
|
2255
2279
|
'json-package/require-publishConfig'?: Linter.RuleEntry<JsonPackageRequirePublishConfig>;
|
|
2256
2280
|
/**
|
|
2257
2281
|
* Requires the `repository` property to be present.
|
|
2258
2282
|
*
|
|
2259
|
-
* @see https://
|
|
2283
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-repository
|
|
2260
2284
|
*/
|
|
2261
2285
|
'json-package/require-repository'?: Linter.RuleEntry<JsonPackageRequireRepository>;
|
|
2262
2286
|
/**
|
|
2263
2287
|
* Requires the `scripts` property to be present.
|
|
2264
2288
|
*
|
|
2265
|
-
* @see https://
|
|
2289
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-scripts
|
|
2266
2290
|
*/
|
|
2267
2291
|
'json-package/require-scripts'?: Linter.RuleEntry<JsonPackageRequireScripts>;
|
|
2268
2292
|
/**
|
|
2269
2293
|
* Requires the `sideEffects` property to be present.
|
|
2270
2294
|
*
|
|
2271
|
-
* @see https://
|
|
2295
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-sideEffects
|
|
2272
2296
|
*/
|
|
2273
2297
|
'json-package/require-sideEffects'?: Linter.RuleEntry<JsonPackageRequireSideEffects>;
|
|
2274
2298
|
/**
|
|
2275
2299
|
* Requires the `type` property to be present.
|
|
2276
2300
|
*
|
|
2277
|
-
* @see https://
|
|
2301
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-type
|
|
2278
2302
|
*/
|
|
2279
2303
|
'json-package/require-type'?: Linter.RuleEntry<JsonPackageRequireType>;
|
|
2280
2304
|
/**
|
|
2281
2305
|
* Requires the `types` property to be present.
|
|
2282
2306
|
*
|
|
2283
|
-
* @see https://
|
|
2307
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-types
|
|
2284
2308
|
*/
|
|
2285
2309
|
'json-package/require-types'?: Linter.RuleEntry<JsonPackageRequireTypes>;
|
|
2286
2310
|
/**
|
|
2287
2311
|
* Requires the `version` property to be present.
|
|
2288
2312
|
*
|
|
2289
|
-
* @see https://
|
|
2313
|
+
* @see https://eslint-plugin-package-json.dev/rules/require-properties/require-version
|
|
2290
2314
|
*/
|
|
2291
2315
|
'json-package/require-version'?: Linter.RuleEntry<JsonPackageRequireVersion>;
|
|
2292
2316
|
/**
|
|
2293
2317
|
* Restricts the range of dependencies to allow or disallow specific types of
|
|
2294
2318
|
* ranges.
|
|
2295
2319
|
*
|
|
2296
|
-
* @see https://
|
|
2320
|
+
* @see https://eslint-plugin-package-json.dev/rules/restrict-dependency-ranges
|
|
2297
2321
|
*/
|
|
2298
2322
|
'json-package/restrict-dependency-ranges'?: Linter.RuleEntry<JsonPackageRestrictDependencyRanges>;
|
|
2299
2323
|
/**
|
|
2300
2324
|
* Disallows unnecessary properties in private packages.
|
|
2301
2325
|
*
|
|
2302
|
-
* @see https://
|
|
2326
|
+
* @see https://eslint-plugin-package-json.dev/rules/restrict-private-properties
|
|
2303
2327
|
*/
|
|
2304
2328
|
'json-package/restrict-private-properties'?: Linter.RuleEntry<JsonPackageRestrictPrivateProperties>;
|
|
2305
2329
|
/**
|
|
2306
2330
|
* Disallows specified top-level properties in package.json.
|
|
2307
2331
|
*
|
|
2308
|
-
* @see https://
|
|
2332
|
+
* @see https://eslint-plugin-package-json.dev/rules/restrict-top-level-properties
|
|
2309
2333
|
*/
|
|
2310
2334
|
'json-package/restrict-top-level-properties'?: Linter.RuleEntry<JsonPackageRestrictTopLevelProperties>;
|
|
2311
2335
|
/**
|
|
2312
2336
|
* Enforce that names for `scripts` are in kebab case (optionally separated by
|
|
2313
2337
|
* colons).
|
|
2314
2338
|
*
|
|
2315
|
-
* @see https://
|
|
2339
|
+
* @see https://eslint-plugin-package-json.dev/rules/scripts-name-casing
|
|
2316
2340
|
*/
|
|
2317
2341
|
'json-package/scripts-name-casing'?: Linter.RuleEntry<[]>;
|
|
2318
2342
|
/**
|
|
2319
2343
|
* Selected collections must be in a consistent order (lexicographical for
|
|
2320
2344
|
* most; lifecycle-aware for scripts).
|
|
2321
2345
|
*
|
|
2322
|
-
* @see https://
|
|
2346
|
+
* @see https://eslint-plugin-package-json.dev/rules/sort-collections
|
|
2323
2347
|
*/
|
|
2324
2348
|
'json-package/sort-collections'?: Linter.RuleEntry<JsonPackageSortCollections>;
|
|
2325
2349
|
/**
|
|
2326
2350
|
* Requires that all peer dependencies are also declared as dev dependencies
|
|
2327
2351
|
*
|
|
2328
|
-
* @see https://
|
|
2352
|
+
* @see https://eslint-plugin-package-json.dev/rules/specify-peers-locally
|
|
2329
2353
|
*/
|
|
2330
2354
|
'json-package/specify-peers-locally'?: Linter.RuleEntry<[]>;
|
|
2331
2355
|
/**
|
|
2332
2356
|
* Checks a dependency isn't specified more than once (i.e. in `dependencies`
|
|
2333
2357
|
* and `devDependencies`)
|
|
2334
2358
|
*
|
|
2335
|
-
* @see https://
|
|
2359
|
+
* @see https://eslint-plugin-package-json.dev/rules/unique-dependencies
|
|
2336
2360
|
*/
|
|
2337
2361
|
'json-package/unique-dependencies'?: Linter.RuleEntry<[]>;
|
|
2338
2362
|
/**
|
|
2339
2363
|
* Enforce that the `author` property is valid.
|
|
2340
2364
|
*
|
|
2341
|
-
* @see https://
|
|
2365
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-author
|
|
2342
2366
|
*/
|
|
2343
2367
|
'json-package/valid-author'?: Linter.RuleEntry<[]>;
|
|
2344
2368
|
/**
|
|
2345
2369
|
* Enforce that the `bin` property is valid.
|
|
2346
2370
|
*
|
|
2347
|
-
* @see https://
|
|
2371
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bin
|
|
2348
2372
|
*/
|
|
2349
2373
|
'json-package/valid-bin'?: Linter.RuleEntry<[]>;
|
|
2374
|
+
/**
|
|
2375
|
+
* Enforce that the `browser` property is valid.
|
|
2376
|
+
*
|
|
2377
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-browser
|
|
2378
|
+
*/
|
|
2379
|
+
'json-package/valid-browser'?: Linter.RuleEntry<[]>;
|
|
2350
2380
|
/**
|
|
2351
2381
|
* Enforce that the `bugs` property is valid.
|
|
2352
2382
|
*
|
|
2353
|
-
* @see https://
|
|
2383
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bugs
|
|
2354
2384
|
*/
|
|
2355
2385
|
'json-package/valid-bugs'?: Linter.RuleEntry<[]>;
|
|
2356
2386
|
/**
|
|
2357
|
-
* Enforce that the `bundleDependencies` (also
|
|
2358
|
-
*
|
|
2387
|
+
* Enforce that the `bundleDependencies` (also `bundledDependencies`) property
|
|
2388
|
+
* is valid.
|
|
2359
2389
|
*
|
|
2360
|
-
* @see https://
|
|
2390
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bundleDependencies
|
|
2361
2391
|
*/
|
|
2362
2392
|
'json-package/valid-bundleDependencies'?: Linter.RuleEntry<[]>;
|
|
2363
2393
|
/**
|
|
2364
2394
|
* Enforce that the `config` property is valid.
|
|
2365
2395
|
*
|
|
2366
|
-
* @see https://
|
|
2396
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-config
|
|
2367
2397
|
*/
|
|
2368
2398
|
'json-package/valid-config'?: Linter.RuleEntry<[]>;
|
|
2369
2399
|
/**
|
|
2370
2400
|
* Enforce that the `contributors` property is valid.
|
|
2371
2401
|
*
|
|
2372
|
-
* @see https://
|
|
2402
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-contributors
|
|
2373
2403
|
*/
|
|
2374
2404
|
'json-package/valid-contributors'?: Linter.RuleEntry<[]>;
|
|
2375
2405
|
/**
|
|
2376
2406
|
* Enforce that the `cpu` property is valid.
|
|
2377
2407
|
*
|
|
2378
|
-
* @see https://
|
|
2408
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-cpu
|
|
2379
2409
|
*/
|
|
2380
2410
|
'json-package/valid-cpu'?: Linter.RuleEntry<[]>;
|
|
2381
2411
|
/**
|
|
2382
2412
|
* Enforce that the `dependencies` property is valid.
|
|
2383
2413
|
*
|
|
2384
|
-
* @see https://
|
|
2414
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-dependencies
|
|
2385
2415
|
*/
|
|
2386
2416
|
'json-package/valid-dependencies'?: Linter.RuleEntry<[]>;
|
|
2387
2417
|
/**
|
|
2388
2418
|
* Enforce that the `description` property is valid.
|
|
2389
2419
|
*
|
|
2390
|
-
* @see https://
|
|
2420
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-description
|
|
2391
2421
|
*/
|
|
2392
2422
|
'json-package/valid-description'?: Linter.RuleEntry<[]>;
|
|
2393
2423
|
/**
|
|
2394
2424
|
* Enforce that the `devDependencies` property is valid.
|
|
2395
2425
|
*
|
|
2396
|
-
* @see https://
|
|
2426
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-devDependencies
|
|
2397
2427
|
*/
|
|
2398
2428
|
'json-package/valid-devDependencies'?: Linter.RuleEntry<[]>;
|
|
2399
2429
|
/**
|
|
2400
2430
|
* Enforce that the `devEngines` property is valid.
|
|
2401
2431
|
*
|
|
2402
|
-
* @see https://
|
|
2432
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-devEngines
|
|
2403
2433
|
*/
|
|
2404
2434
|
'json-package/valid-devEngines'?: Linter.RuleEntry<[]>;
|
|
2405
2435
|
/**
|
|
2406
2436
|
* Enforce that the `directories` property is valid.
|
|
2407
2437
|
*
|
|
2408
|
-
* @see https://
|
|
2438
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-directories
|
|
2409
2439
|
*/
|
|
2410
2440
|
'json-package/valid-directories'?: Linter.RuleEntry<[]>;
|
|
2411
2441
|
/**
|
|
2412
2442
|
* Enforce that the `engines` property is valid.
|
|
2413
2443
|
*
|
|
2414
|
-
* @see https://
|
|
2444
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-engines
|
|
2415
2445
|
*/
|
|
2416
2446
|
'json-package/valid-engines'?: Linter.RuleEntry<[]>;
|
|
2417
2447
|
/**
|
|
2418
2448
|
* Enforce that the `exports` property is valid.
|
|
2419
2449
|
*
|
|
2420
|
-
* @see https://
|
|
2450
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-exports
|
|
2421
2451
|
*/
|
|
2422
2452
|
'json-package/valid-exports'?: Linter.RuleEntry<[]>;
|
|
2423
2453
|
/**
|
|
2424
2454
|
* Enforce that the `files` property is valid.
|
|
2425
2455
|
*
|
|
2426
|
-
* @see https://
|
|
2456
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-files
|
|
2427
2457
|
*/
|
|
2428
2458
|
'json-package/valid-files'?: Linter.RuleEntry<[]>;
|
|
2429
2459
|
/**
|
|
2430
2460
|
* Enforce that the `funding` property is valid.
|
|
2431
2461
|
*
|
|
2432
|
-
* @see https://
|
|
2462
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-funding
|
|
2433
2463
|
*/
|
|
2434
2464
|
'json-package/valid-funding'?: Linter.RuleEntry<[]>;
|
|
2465
|
+
/**
|
|
2466
|
+
* Enforce that the `gypfile` property is valid.
|
|
2467
|
+
*
|
|
2468
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-gypfile
|
|
2469
|
+
*/
|
|
2470
|
+
'json-package/valid-gypfile'?: Linter.RuleEntry<[]>;
|
|
2435
2471
|
/**
|
|
2436
2472
|
* Enforce that the `homepage` property is valid.
|
|
2437
2473
|
*
|
|
2438
|
-
* @see https://
|
|
2474
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-homepage
|
|
2439
2475
|
*/
|
|
2440
2476
|
'json-package/valid-homepage'?: Linter.RuleEntry<[]>;
|
|
2441
2477
|
/**
|
|
2442
2478
|
* Enforce that the `keywords` property is valid.
|
|
2443
2479
|
*
|
|
2444
|
-
* @see https://
|
|
2480
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-keywords
|
|
2445
2481
|
*/
|
|
2446
2482
|
'json-package/valid-keywords'?: Linter.RuleEntry<[]>;
|
|
2483
|
+
/**
|
|
2484
|
+
* Enforce that the `libc` property is valid.
|
|
2485
|
+
*
|
|
2486
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-libc
|
|
2487
|
+
*/
|
|
2488
|
+
'json-package/valid-libc'?: Linter.RuleEntry<[]>;
|
|
2447
2489
|
/**
|
|
2448
2490
|
* Enforce that the `license` property is valid.
|
|
2449
2491
|
*
|
|
2450
|
-
* @see https://
|
|
2492
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-license
|
|
2451
2493
|
*/
|
|
2452
2494
|
'json-package/valid-license'?: Linter.RuleEntry<[]>;
|
|
2453
2495
|
/**
|
|
2454
2496
|
* Enforce that the `main` property is valid.
|
|
2455
2497
|
*
|
|
2456
|
-
* @see https://
|
|
2498
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-main
|
|
2457
2499
|
*/
|
|
2458
2500
|
'json-package/valid-main'?: Linter.RuleEntry<[]>;
|
|
2459
2501
|
/**
|
|
2460
2502
|
* Enforce that the `man` property is valid.
|
|
2461
2503
|
*
|
|
2462
|
-
* @see https://
|
|
2504
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-man
|
|
2463
2505
|
*/
|
|
2464
2506
|
'json-package/valid-man'?: Linter.RuleEntry<[]>;
|
|
2465
2507
|
/**
|
|
2466
2508
|
* Enforce that the `module` property is valid.
|
|
2467
2509
|
*
|
|
2468
|
-
* @see https://
|
|
2510
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-module
|
|
2469
2511
|
*/
|
|
2470
2512
|
'json-package/valid-module'?: Linter.RuleEntry<[]>;
|
|
2471
2513
|
/**
|
|
2472
|
-
* Enforce that
|
|
2514
|
+
* Enforce that the `name` property is valid.
|
|
2473
2515
|
*
|
|
2474
|
-
* @see https://
|
|
2516
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-name
|
|
2475
2517
|
*/
|
|
2476
2518
|
'json-package/valid-name'?: Linter.RuleEntry<[]>;
|
|
2477
2519
|
/**
|
|
2478
2520
|
* Enforce that the `optionalDependencies` property is valid.
|
|
2479
2521
|
*
|
|
2480
|
-
* @see https://
|
|
2522
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-optionalDependencies
|
|
2481
2523
|
*/
|
|
2482
2524
|
'json-package/valid-optionalDependencies'?: Linter.RuleEntry<[]>;
|
|
2483
2525
|
/**
|
|
2484
2526
|
* Enforce that the `os` property is valid.
|
|
2485
2527
|
*
|
|
2486
|
-
* @see https://
|
|
2528
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-os
|
|
2487
2529
|
*/
|
|
2488
2530
|
'json-package/valid-os'?: Linter.RuleEntry<[]>;
|
|
2489
|
-
/**
|
|
2490
|
-
* Enforce that package.json has all properties required by the npm spec
|
|
2491
|
-
*
|
|
2492
|
-
* @deprecated
|
|
2493
|
-
* @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-package-definition.md
|
|
2494
|
-
*/
|
|
2495
|
-
'json-package/valid-package-definition'?: Linter.RuleEntry<JsonPackageValidPackageDefinition>;
|
|
2496
2531
|
/**
|
|
2497
2532
|
* Enforce that the `packageManager` property is valid.
|
|
2498
2533
|
*
|
|
2499
|
-
* @see https://
|
|
2534
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-packageManager
|
|
2500
2535
|
*/
|
|
2501
2536
|
'json-package/valid-packageManager'?: Linter.RuleEntry<[]>;
|
|
2502
2537
|
/**
|
|
2503
2538
|
* Enforce that the `peerDependencies` property is valid.
|
|
2504
2539
|
*
|
|
2505
|
-
* @see https://
|
|
2540
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-peerDependencies
|
|
2506
2541
|
*/
|
|
2507
2542
|
'json-package/valid-peerDependencies'?: Linter.RuleEntry<[]>;
|
|
2543
|
+
/**
|
|
2544
|
+
* Enforce that the `peerDependenciesMeta` property is valid.
|
|
2545
|
+
*
|
|
2546
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-peerDependenciesMeta
|
|
2547
|
+
*/
|
|
2548
|
+
'json-package/valid-peerDependenciesMeta'?: Linter.RuleEntry<[]>;
|
|
2549
|
+
/**
|
|
2550
|
+
* Enforces that any dependencies declared in `peerDependenciesMeta` are also
|
|
2551
|
+
* defined in the package's `peerDependencies`.
|
|
2552
|
+
*
|
|
2553
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-peerDependenciesMeta-relationship
|
|
2554
|
+
*/
|
|
2555
|
+
'json-package/valid-peerDependenciesMeta-relationship'?: Linter.RuleEntry<[]>;
|
|
2508
2556
|
/**
|
|
2509
2557
|
* Enforce that the `private` property is valid.
|
|
2510
2558
|
*
|
|
2511
|
-
* @see https://
|
|
2559
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-private
|
|
2512
2560
|
*/
|
|
2513
2561
|
'json-package/valid-private'?: Linter.RuleEntry<[]>;
|
|
2514
2562
|
/**
|
|
2515
2563
|
* Enforce that the `publishConfig` property is valid.
|
|
2516
2564
|
*
|
|
2517
|
-
* @see https://
|
|
2565
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-publishConfig
|
|
2518
2566
|
*/
|
|
2519
2567
|
'json-package/valid-publishConfig'?: Linter.RuleEntry<[]>;
|
|
2520
2568
|
/**
|
|
2521
2569
|
* Enforce that the `repository` property is valid.
|
|
2522
2570
|
*
|
|
2523
|
-
* @see https://
|
|
2571
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-repository
|
|
2524
2572
|
*/
|
|
2525
2573
|
'json-package/valid-repository'?: Linter.RuleEntry<[]>;
|
|
2526
2574
|
/**
|
|
2527
2575
|
* Enforce that if repository directory is specified, it matches the path to
|
|
2528
2576
|
* the package.json file
|
|
2529
2577
|
*
|
|
2530
|
-
* @see https://
|
|
2578
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-repository-directory
|
|
2531
2579
|
*/
|
|
2532
2580
|
'json-package/valid-repository-directory'?: Linter.RuleEntry<[]>;
|
|
2533
2581
|
/**
|
|
2534
2582
|
* Enforce that the `scripts` property is valid.
|
|
2535
2583
|
*
|
|
2536
|
-
* @see https://
|
|
2584
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-scripts
|
|
2537
2585
|
*/
|
|
2538
2586
|
'json-package/valid-scripts'?: Linter.RuleEntry<[]>;
|
|
2539
2587
|
/**
|
|
2540
2588
|
* Enforce that the `sideEffects` property is valid.
|
|
2541
2589
|
*
|
|
2542
|
-
* @see https://
|
|
2590
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-sideEffects
|
|
2543
2591
|
*/
|
|
2544
2592
|
'json-package/valid-sideEffects'?: Linter.RuleEntry<[]>;
|
|
2545
2593
|
/**
|
|
2546
2594
|
* Enforce that the `type` property is valid.
|
|
2547
2595
|
*
|
|
2548
|
-
* @see https://
|
|
2596
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-type
|
|
2549
2597
|
*/
|
|
2550
2598
|
'json-package/valid-type'?: Linter.RuleEntry<[]>;
|
|
2551
2599
|
/**
|
|
2552
|
-
* Enforce that
|
|
2600
|
+
* Enforce that the `version` property is valid.
|
|
2553
2601
|
*
|
|
2554
|
-
* @see https://
|
|
2602
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-version
|
|
2555
2603
|
*/
|
|
2556
2604
|
'json-package/valid-version'?: Linter.RuleEntry<[]>;
|
|
2557
2605
|
/**
|
|
2558
2606
|
* Enforce that the `workspaces` property is valid.
|
|
2559
2607
|
*
|
|
2560
|
-
* @see https://
|
|
2608
|
+
* @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-workspaces
|
|
2561
2609
|
*/
|
|
2562
2610
|
'json-package/valid-workspaces'?: Linter.RuleEntry<[]>;
|
|
2563
2611
|
/**
|
|
@@ -11181,7 +11229,7 @@ type JsonPackageNoEmptyFields = [] | [{
|
|
|
11181
11229
|
ignoreProperties?: string[];
|
|
11182
11230
|
}]; // ----- json-package/order-properties -----
|
|
11183
11231
|
type JsonPackageOrderProperties = [] | [{
|
|
11184
|
-
order?:
|
|
11232
|
+
order?: 'sort-package-json' | string[];
|
|
11185
11233
|
}]; // ----- json-package/repository-shorthand -----
|
|
11186
11234
|
type JsonPackageRepositoryShorthand = [] | [{
|
|
11187
11235
|
form?: 'object' | 'shorthand';
|
|
@@ -11195,12 +11243,18 @@ type JsonPackageRequireAuthor = [] | [{
|
|
|
11195
11243
|
}]; // ----- json-package/require-bin -----
|
|
11196
11244
|
type JsonPackageRequireBin = [] | [{
|
|
11197
11245
|
ignorePrivate?: boolean;
|
|
11246
|
+
}]; // ----- json-package/require-browser -----
|
|
11247
|
+
type JsonPackageRequireBrowser = [] | [{
|
|
11248
|
+
ignorePrivate?: boolean;
|
|
11198
11249
|
}]; // ----- json-package/require-bugs -----
|
|
11199
11250
|
type JsonPackageRequireBugs = [] | [{
|
|
11200
11251
|
ignorePrivate?: boolean;
|
|
11201
11252
|
}]; // ----- json-package/require-bundleDependencies -----
|
|
11202
11253
|
type JsonPackageRequireBundleDependencies = [] | [{
|
|
11203
11254
|
ignorePrivate?: boolean;
|
|
11255
|
+
}]; // ----- json-package/require-config -----
|
|
11256
|
+
type JsonPackageRequireConfig = [] | [{
|
|
11257
|
+
ignorePrivate?: boolean;
|
|
11204
11258
|
}]; // ----- json-package/require-contributors -----
|
|
11205
11259
|
type JsonPackageRequireContributors = [] | [{
|
|
11206
11260
|
ignorePrivate?: boolean;
|
|
@@ -11234,12 +11288,18 @@ type JsonPackageRequireFiles = [] | [{
|
|
|
11234
11288
|
}]; // ----- json-package/require-funding -----
|
|
11235
11289
|
type JsonPackageRequireFunding = [] | [{
|
|
11236
11290
|
ignorePrivate?: boolean;
|
|
11291
|
+
}]; // ----- json-package/require-gypfile -----
|
|
11292
|
+
type JsonPackageRequireGypfile = [] | [{
|
|
11293
|
+
ignorePrivate?: boolean;
|
|
11237
11294
|
}]; // ----- json-package/require-homepage -----
|
|
11238
11295
|
type JsonPackageRequireHomepage = [] | [{
|
|
11239
11296
|
ignorePrivate?: boolean;
|
|
11240
11297
|
}]; // ----- json-package/require-keywords -----
|
|
11241
11298
|
type JsonPackageRequireKeywords = [] | [{
|
|
11242
11299
|
ignorePrivate?: boolean;
|
|
11300
|
+
}]; // ----- json-package/require-libc -----
|
|
11301
|
+
type JsonPackageRequireLibc = [] | [{
|
|
11302
|
+
ignorePrivate?: boolean;
|
|
11243
11303
|
}]; // ----- json-package/require-license -----
|
|
11244
11304
|
type JsonPackageRequireLicense = [] | [{
|
|
11245
11305
|
ignorePrivate?: boolean;
|
|
@@ -11309,10 +11369,7 @@ type JsonPackageRestrictTopLevelProperties = [] | [{
|
|
|
11309
11369
|
property: string;
|
|
11310
11370
|
})[];
|
|
11311
11371
|
}]; // ----- json-package/sort-collections -----
|
|
11312
|
-
type JsonPackageSortCollections = [] | [string[]]; // ----- json
|
|
11313
|
-
type JsonPackageValidPackageDefinition = [] | [{
|
|
11314
|
-
ignoreProperties?: string[];
|
|
11315
|
-
}]; // ----- json/array-bracket-newline -----
|
|
11372
|
+
type JsonPackageSortCollections = [] | [string[]]; // ----- json/array-bracket-newline -----
|
|
11316
11373
|
type JsonArrayBracketNewline = [] | [('always' | 'never' | 'consistent') | {
|
|
11317
11374
|
multiline?: boolean;
|
|
11318
11375
|
minItems?: number | null;
|
|
@@ -19018,4 +19075,4 @@ declare function generatePerfectionistSortConfig(strings: string[], matchType?:
|
|
|
19018
19075
|
};
|
|
19019
19076
|
};
|
|
19020
19077
|
//#endregion
|
|
19021
|
-
export { Awaitable, type ConfigNames, type FileType, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_JS, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MDX, GLOB_MDX_CODE, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVELTE_JS, GLOB_SVELTE_TS, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, OptionsConfig, OptionsHasTypeScript, OptionsIsInEditor, OptionsOverrides, OptionsOverridesEmbeddedScripts, OptionsTypeAware, ResolvedOptions, Rules, TypedFlatConfigItem, astro, clearCache, combine, eslintConfig as default, eslintConfig, defaultPluginRenaming, disables, fix, fixFile, generatePerfectionistSortConfig, getLanguageOptions, getOverrides, getOverridesEmbeddedScripts, html, ignores, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, js, json, jsx, md, mdx, react, renamePluginInConfigs, renameRules, resolveSubOptions, svelte, test, toArray, toml, ts, tsx, yaml };
|
|
19078
|
+
export { type Awaitable, type ConfigNames, type FileType, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_JS, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MDX, GLOB_MDX_CODE, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVELTE_JS, GLOB_SVELTE_TS, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, type OptionsConfig, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsOverridesEmbeddedScripts, type OptionsTypeAware, ResolvedOptions, type Rules, type TypedFlatConfigItem, astro, clearCache, combine, eslintConfig as default, eslintConfig, defaultPluginRenaming, disables, fix, fixFile, generatePerfectionistSortConfig, getLanguageOptions, getOverrides, getOverridesEmbeddedScripts, html, ignores, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, js, json, jsx, md, mdx, react, renamePluginInConfigs, renameRules, resolveSubOptions, svelte, test, toArray, toml, ts, tsx, yaml };
|