@storm-software/eslint 0.170.104 → 0.170.106
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/README.md +1 -1
- package/dist/chunk-WRL7SCXT.js +167 -0
- package/dist/preset.cjs +381 -222
- package/dist/preset.js +360 -1113
- package/dist/src-XM26HI2Q.js +594 -0
- package/package.json +9 -9
package/dist/preset.cjs
CHANGED
|
@@ -113,6 +113,10 @@ var __esm = (fn, res) => function __init() {
|
|
|
113
113
|
var __commonJS = (cb, mod) => function __require2() {
|
|
114
114
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
115
115
|
};
|
|
116
|
+
var __export = (target, all) => {
|
|
117
|
+
for (var name3 in all)
|
|
118
|
+
__defProp(target, name3, { get: all[name3], enumerable: true });
|
|
119
|
+
};
|
|
116
120
|
var __copyProps = (to, from, except, desc) => {
|
|
117
121
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
118
122
|
for (let key of __getOwnPropNames(from))
|
|
@@ -139,6 +143,175 @@ var init_cjs_shims = __esm({
|
|
|
139
143
|
}
|
|
140
144
|
});
|
|
141
145
|
|
|
146
|
+
// ../package-constants/src/globs.ts
|
|
147
|
+
var GLOB_SRC_EXT, GLOB_SRC_FILE, GLOB_SRC, GLOB_JSX_EXT, GLOB_JSX_FILE, GLOB_JSX, GLOB_TS_EXT, GLOB_TS_FILE, GLOB_TS, GLOB_TSX_EXT, GLOB_TSX_FILE, GLOB_TSX, GLOB_CSS_EXT, GLOB_CSS_FILE, GLOB_CSS, GLOB_POSTCSS_EXT, GLOB_POSTCSS_FILE, GLOB_POSTCSS, GLOB_LESS_EXT, GLOB_LESS_FILE, GLOB_LESS, GLOB_SCSS_EXT, GLOB_SCSS_FILE, GLOB_SCSS, GLOB_JSON_EXT, GLOB_JSON_FILE, GLOB_JSON, GLOB_JSON5_EXT, GLOB_JSON5_FILE, GLOB_JSON5, GLOB_JSONC_EXT, GLOB_JSONC_FILE, GLOB_JSONC, GLOB_MARKDOWN_EXT, GLOB_MARKDOWN_FILE, GLOB_MARKDOWN, GLOB_MDX_EXT, GLOB_MDX_FILE, GLOB_MDX, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_YAML_EXT, GLOB_YAML_FILE, GLOB_YAML, GLOB_TOML_EXT, GLOB_TOML_FILE, GLOB_TOML, GLOB_XML_EXT, GLOB_XML_FILE, GLOB_XML, GLOB_SVG_EXT, GLOB_SVG_FILE, GLOB_SVG, GLOB_HTML_EXT, GLOB_HTML_FILE, GLOB_HTML, GLOB_ASTRO_EXT, GLOB_ASTRO_FILE, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_GRAPHQL_EXT, GLOB_GRAPHQL_FILE, GLOB_GRAPHQL, GLOB_TESTS, GLOB_EXCLUDE;
|
|
148
|
+
var init_globs = __esm({
|
|
149
|
+
"../package-constants/src/globs.ts"() {
|
|
150
|
+
init_cjs_shims();
|
|
151
|
+
GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
|
|
152
|
+
GLOB_SRC_FILE = `*.${GLOB_SRC_EXT}`;
|
|
153
|
+
GLOB_SRC = `**/${GLOB_SRC_FILE}`;
|
|
154
|
+
GLOB_JSX_EXT = "?([cm])jsx";
|
|
155
|
+
GLOB_JSX_FILE = `*.${GLOB_JSX_EXT}`;
|
|
156
|
+
GLOB_JSX = `**/${GLOB_JSX_FILE}`;
|
|
157
|
+
GLOB_TS_EXT = "?([cm])ts";
|
|
158
|
+
GLOB_TS_FILE = `*.${GLOB_TS_EXT}`;
|
|
159
|
+
GLOB_TS = `**/${GLOB_TS_FILE}`;
|
|
160
|
+
GLOB_TSX_EXT = "?([cm])tsx";
|
|
161
|
+
GLOB_TSX_FILE = `*.${GLOB_TSX_EXT}`;
|
|
162
|
+
GLOB_TSX = `**/${GLOB_TSX_FILE}`;
|
|
163
|
+
GLOB_CSS_EXT = "css";
|
|
164
|
+
GLOB_CSS_FILE = `*.${GLOB_CSS_EXT}`;
|
|
165
|
+
GLOB_CSS = `**/${GLOB_CSS_FILE}`;
|
|
166
|
+
GLOB_POSTCSS_EXT = "{p,post}css";
|
|
167
|
+
GLOB_POSTCSS_FILE = `*.${GLOB_POSTCSS_EXT}`;
|
|
168
|
+
GLOB_POSTCSS = `**/${GLOB_POSTCSS_FILE}`;
|
|
169
|
+
GLOB_LESS_EXT = "less";
|
|
170
|
+
GLOB_LESS_FILE = `*.${GLOB_LESS_EXT}`;
|
|
171
|
+
GLOB_LESS = `**/${GLOB_LESS_FILE}`;
|
|
172
|
+
GLOB_SCSS_EXT = "scss";
|
|
173
|
+
GLOB_SCSS_FILE = `*.${GLOB_SCSS_EXT}`;
|
|
174
|
+
GLOB_SCSS = `**/${GLOB_SCSS_FILE}`;
|
|
175
|
+
GLOB_JSON_EXT = "json";
|
|
176
|
+
GLOB_JSON_FILE = `*.${GLOB_JSON_EXT}`;
|
|
177
|
+
GLOB_JSON = `**/${GLOB_JSON_FILE}`;
|
|
178
|
+
GLOB_JSON5_EXT = "json5";
|
|
179
|
+
GLOB_JSON5_FILE = `*.${GLOB_JSON5_EXT}`;
|
|
180
|
+
GLOB_JSON5 = `**/${GLOB_JSON5_FILE}`;
|
|
181
|
+
GLOB_JSONC_EXT = "jsonc";
|
|
182
|
+
GLOB_JSONC_FILE = `*.${GLOB_JSONC_EXT}`;
|
|
183
|
+
GLOB_JSONC = `**/${GLOB_JSONC_FILE}`;
|
|
184
|
+
GLOB_MARKDOWN_EXT = "md";
|
|
185
|
+
GLOB_MARKDOWN_FILE = `*.${GLOB_MARKDOWN_EXT}`;
|
|
186
|
+
GLOB_MARKDOWN = `**/${GLOB_MARKDOWN_FILE}`;
|
|
187
|
+
GLOB_MDX_EXT = "mdx";
|
|
188
|
+
GLOB_MDX_FILE = `*.${GLOB_MDX_EXT}`;
|
|
189
|
+
GLOB_MDX = `**/${GLOB_MDX_FILE}`;
|
|
190
|
+
GLOB_MARKDOWN_IN_MARKDOWN = `${GLOB_MARKDOWN}/${GLOB_MARKDOWN_FILE}`;
|
|
191
|
+
GLOB_YAML_EXT = "y?(a)ml";
|
|
192
|
+
GLOB_YAML_FILE = `*.${GLOB_YAML_EXT}`;
|
|
193
|
+
GLOB_YAML = `**/${GLOB_YAML_FILE}`;
|
|
194
|
+
GLOB_TOML_EXT = "toml";
|
|
195
|
+
GLOB_TOML_FILE = `*.${GLOB_TOML_EXT}`;
|
|
196
|
+
GLOB_TOML = `**/${GLOB_TOML_FILE}`;
|
|
197
|
+
GLOB_XML_EXT = "xml";
|
|
198
|
+
GLOB_XML_FILE = `*.${GLOB_XML_EXT}`;
|
|
199
|
+
GLOB_XML = `**/${GLOB_XML_FILE}`;
|
|
200
|
+
GLOB_SVG_EXT = "svg";
|
|
201
|
+
GLOB_SVG_FILE = `*.${GLOB_SVG_EXT}`;
|
|
202
|
+
GLOB_SVG = `**/${GLOB_SVG_FILE}`;
|
|
203
|
+
GLOB_HTML_EXT = "htm?(l)";
|
|
204
|
+
GLOB_HTML_FILE = `*.${GLOB_HTML_EXT}`;
|
|
205
|
+
GLOB_HTML = `**/${GLOB_HTML_FILE}`;
|
|
206
|
+
GLOB_ASTRO_EXT = "astro";
|
|
207
|
+
GLOB_ASTRO_FILE = `*.${GLOB_ASTRO_EXT}`;
|
|
208
|
+
GLOB_ASTRO = `**/${GLOB_ASTRO_FILE}`;
|
|
209
|
+
GLOB_ASTRO_TS = `${GLOB_ASTRO}/*.ts`;
|
|
210
|
+
GLOB_GRAPHQL_EXT = "{g,graph}ql";
|
|
211
|
+
GLOB_GRAPHQL_FILE = `*.${GLOB_GRAPHQL_EXT}`;
|
|
212
|
+
GLOB_GRAPHQL = `**/${GLOB_GRAPHQL_FILE}`;
|
|
213
|
+
GLOB_TESTS = [
|
|
214
|
+
`**/__tests__/**/*.${GLOB_SRC_EXT}`,
|
|
215
|
+
`**/*.spec.${GLOB_SRC_EXT}`,
|
|
216
|
+
`**/*.test.${GLOB_SRC_EXT}`,
|
|
217
|
+
`**/*.bench.${GLOB_SRC_EXT}`,
|
|
218
|
+
`**/*.benchmark.${GLOB_SRC_EXT}`
|
|
219
|
+
];
|
|
220
|
+
GLOB_EXCLUDE = [
|
|
221
|
+
"**/.git",
|
|
222
|
+
"**/node_modules",
|
|
223
|
+
"**/dist",
|
|
224
|
+
"**/tmp",
|
|
225
|
+
"**/coverage",
|
|
226
|
+
"**/bench",
|
|
227
|
+
"**/__snapshots__",
|
|
228
|
+
"**/__test__",
|
|
229
|
+
"**/__mocks__",
|
|
230
|
+
"**/__generated__",
|
|
231
|
+
"**/.wrangler",
|
|
232
|
+
"**/.rolldown",
|
|
233
|
+
"**/.docusaurus",
|
|
234
|
+
"**/.tamagui",
|
|
235
|
+
"**/tamagui.css",
|
|
236
|
+
"**/.nx",
|
|
237
|
+
"**/.next",
|
|
238
|
+
"**/.storm",
|
|
239
|
+
"**/.powerlines",
|
|
240
|
+
"**/.shell-shock",
|
|
241
|
+
"**/.earthquake",
|
|
242
|
+
"**/.aftershock",
|
|
243
|
+
"**/workbox*.js",
|
|
244
|
+
"**/sw*.js",
|
|
245
|
+
"**/service-worker.js",
|
|
246
|
+
"**/fallback*.js",
|
|
247
|
+
"**/ios",
|
|
248
|
+
"**/.android",
|
|
249
|
+
"**/.DS_Store",
|
|
250
|
+
"**/Thumbs.db",
|
|
251
|
+
"**/.cspellcache",
|
|
252
|
+
"**/package-lock.*",
|
|
253
|
+
"**/npm-lock.*",
|
|
254
|
+
"**/pnpm-lock.*",
|
|
255
|
+
"**/bun.lockb",
|
|
256
|
+
"**/cargo.lock",
|
|
257
|
+
"**/next-env.d.ts",
|
|
258
|
+
"**/CODEOWNERS",
|
|
259
|
+
"**/yarn.lock",
|
|
260
|
+
"**/jest.preset.{js,ts,cjs,cts,mjs,mts,json}",
|
|
261
|
+
"**/vitest.preset.{js,ts,cjs,cts,mjs,mts,json}",
|
|
262
|
+
"**/jest.config.{js,ts,cjs,cts,mjs,mts,json}",
|
|
263
|
+
"**/vitest.config.{js,ts,cjs,cts,mjs,mts,json}",
|
|
264
|
+
"**/vitest.workspace.{js,ts,cjs,cts,mjs,mts,json}",
|
|
265
|
+
"**/*.spec.{ts,tsx}",
|
|
266
|
+
"**/*.test.{ts,tsx}",
|
|
267
|
+
"**/output",
|
|
268
|
+
"**/temp",
|
|
269
|
+
"**/.temp",
|
|
270
|
+
"**/.history",
|
|
271
|
+
"**/.vitepress/cache",
|
|
272
|
+
"**/.nuxt",
|
|
273
|
+
"**/.svelte-kit",
|
|
274
|
+
"**/.vercel",
|
|
275
|
+
"**/.changeset",
|
|
276
|
+
"**/.idea",
|
|
277
|
+
"**/.cache",
|
|
278
|
+
"**/.vite-inspect",
|
|
279
|
+
"**/.yarn",
|
|
280
|
+
"**/*.min.*",
|
|
281
|
+
"**/CHANGELOG*.md",
|
|
282
|
+
"**/CONTRIBUTING.md",
|
|
283
|
+
"**/SECURITY.md",
|
|
284
|
+
"**/CODE_OF_CONDUCT.md",
|
|
285
|
+
"**/PULL_REQUEST_TEMPLATE.md",
|
|
286
|
+
"**/LICENSE*",
|
|
287
|
+
"**/auto-import?(s).d.ts",
|
|
288
|
+
"**/components.d.ts",
|
|
289
|
+
"**/vite.config.*.timestamp-*",
|
|
290
|
+
"**/webpack.config.*.timestamp-*",
|
|
291
|
+
"**/rollup.config.*.timestamp-*",
|
|
292
|
+
"**/nx/**/schema.d.ts",
|
|
293
|
+
"**/nx/**/schema.json",
|
|
294
|
+
"**/nx/**/schema.md",
|
|
295
|
+
"**/nx/**/*.schema.d.ts",
|
|
296
|
+
"**/nx/**/*.schema.json",
|
|
297
|
+
"**/nx/**/*.schema.md",
|
|
298
|
+
"**/nx/**/generators/**/files",
|
|
299
|
+
".agents/**/*",
|
|
300
|
+
"**/.agents/**/*",
|
|
301
|
+
".claude/**/*",
|
|
302
|
+
"**/.claude/**/*",
|
|
303
|
+
".codex/**/*",
|
|
304
|
+
"**/.codex/**/*",
|
|
305
|
+
".cursor/**/*",
|
|
306
|
+
"**/.cursor/**/*",
|
|
307
|
+
".opencode/**/*",
|
|
308
|
+
"**/.opencode/**/*",
|
|
309
|
+
".nx/**/*",
|
|
310
|
+
"**/.nx/**/*"
|
|
311
|
+
];
|
|
312
|
+
}
|
|
313
|
+
});
|
|
314
|
+
|
|
142
315
|
// ../../node_modules/.pnpm/eslint-plugin-react-native@5.0.0_patch_hash=697a1cfd3f9a70758c1743e394cb6f0b089088d1388_c0876dd65fa7ad6734ae9ec797a46ea4/node_modules/eslint-plugin-react-native/lib/util/Components.js
|
|
143
316
|
var require_Components = __commonJS({
|
|
144
317
|
"../../node_modules/.pnpm/eslint-plugin-react-native@5.0.0_patch_hash=697a1cfd3f9a70758c1743e394cb6f0b089088d1388_c0876dd65fa7ad6734ae9ec797a46ea4/node_modules/eslint-plugin-react-native/lib/util/Components.js"(exports, module) {
|
|
@@ -1942,175 +2115,196 @@ Please ensure "@storm-software/tsdoc" is installed in the workspace root.`,
|
|
|
1942
2115
|
}
|
|
1943
2116
|
});
|
|
1944
2117
|
|
|
2118
|
+
// ../eslint-plugin-tsdoc/package.json
|
|
2119
|
+
var package_default3;
|
|
2120
|
+
var init_package = __esm({
|
|
2121
|
+
"../eslint-plugin-tsdoc/package.json"() {
|
|
2122
|
+
package_default3 = {
|
|
2123
|
+
name: "@storm-software/eslint-plugin-tsdoc",
|
|
2124
|
+
version: "0.0.35",
|
|
2125
|
+
private: false,
|
|
2126
|
+
description: "An ESLint Plugin that enforces TSDoc comments in Storm Software projects.",
|
|
2127
|
+
keywords: ["eslint", "eslint-plugin", "storm-software"],
|
|
2128
|
+
homepage: "https://stormsoftware.com",
|
|
2129
|
+
bugs: {
|
|
2130
|
+
url: "https://stormsoftware.com/support",
|
|
2131
|
+
email: "support@stormsoftware.com"
|
|
2132
|
+
},
|
|
2133
|
+
repository: {
|
|
2134
|
+
type: "github",
|
|
2135
|
+
url: "https://github.com/storm-software/storm-ops.git",
|
|
2136
|
+
directory: "packages/eslint-plugin-tsdoc"
|
|
2137
|
+
},
|
|
2138
|
+
funding: {
|
|
2139
|
+
type: "github",
|
|
2140
|
+
url: "https://github.com/sponsors/storm-software"
|
|
2141
|
+
},
|
|
2142
|
+
license: "Apache-2.0",
|
|
2143
|
+
author: {
|
|
2144
|
+
name: "Storm Software",
|
|
2145
|
+
email: "contact@stormsoftware.com",
|
|
2146
|
+
url: "https://stormsoftware.com"
|
|
2147
|
+
},
|
|
2148
|
+
maintainers: [
|
|
2149
|
+
{
|
|
2150
|
+
name: "Storm Software",
|
|
2151
|
+
email: "contact@stormsoftware.com",
|
|
2152
|
+
url: "https://stormsoftware.com"
|
|
2153
|
+
}
|
|
2154
|
+
],
|
|
2155
|
+
contributors: [
|
|
2156
|
+
{
|
|
2157
|
+
name: "Storm Software",
|
|
2158
|
+
email: "contact@stormsoftware.com",
|
|
2159
|
+
url: "https://stormsoftware.com"
|
|
2160
|
+
}
|
|
2161
|
+
],
|
|
2162
|
+
type: "module",
|
|
2163
|
+
exports: {
|
|
2164
|
+
".": "./dist/index.mjs",
|
|
2165
|
+
"./configs": "./dist/configs/index.mjs",
|
|
2166
|
+
"./configs/recommended": "./dist/configs/recommended.mjs",
|
|
2167
|
+
"./plugin": "./dist/plugin.mjs",
|
|
2168
|
+
"./package.json": "./package.json"
|
|
2169
|
+
},
|
|
2170
|
+
types: "./dist/index.d.ts",
|
|
2171
|
+
typings: "dist/index.d.mts",
|
|
2172
|
+
files: ["dist"],
|
|
2173
|
+
dependencies: {
|
|
2174
|
+
"@microsoft/tsdoc": "catalog:",
|
|
2175
|
+
"@microsoft/tsdoc-config": "catalog:",
|
|
2176
|
+
"@storm-software/package-constants": "workspace:*",
|
|
2177
|
+
"@typescript-eslint/utils": "catalog:",
|
|
2178
|
+
ajv: "8.12.0",
|
|
2179
|
+
defu: "catalog:",
|
|
2180
|
+
"es-errors": "1.3.0",
|
|
2181
|
+
"fast-deep-equal": "3.1.3",
|
|
2182
|
+
"function-bind": "1.1.2",
|
|
2183
|
+
hasown: "2.0.4",
|
|
2184
|
+
"is-core-module": "2.16.2",
|
|
2185
|
+
jju: "1.4.0",
|
|
2186
|
+
"json-schema-traverse": "1.0.0",
|
|
2187
|
+
"path-parse": "1.0.7",
|
|
2188
|
+
resolve: "1.22.12",
|
|
2189
|
+
"uri-js": "4.4.1"
|
|
2190
|
+
},
|
|
2191
|
+
devDependencies: {
|
|
2192
|
+
"@eslint/compat": "catalog:",
|
|
2193
|
+
"@eslint/config-inspector": "catalog:",
|
|
2194
|
+
"@storm-software/prettier": "workspace:*",
|
|
2195
|
+
"@storm-software/tsdoc": "workspace:*",
|
|
2196
|
+
"@types/eslint": "catalog:",
|
|
2197
|
+
"@types/eslint__js": "catalog:",
|
|
2198
|
+
"@types/node": "catalog:",
|
|
2199
|
+
eslint: "catalog:",
|
|
2200
|
+
"eslint-flat-config-utils": "catalog:",
|
|
2201
|
+
"eslint-plugin-eslint-plugin": "catalog:",
|
|
2202
|
+
"eslint-plugin-i18n-text": "catalog:",
|
|
2203
|
+
"eslint-plugin-tsdoc": "0.4.0",
|
|
2204
|
+
"eslint-typegen": "catalog:",
|
|
2205
|
+
tsdown: "catalog:"
|
|
2206
|
+
},
|
|
2207
|
+
peerDependencies: {
|
|
2208
|
+
"@storm-software/tsdoc": "*",
|
|
2209
|
+
eslint: ">=9.39.3"
|
|
2210
|
+
},
|
|
2211
|
+
peerDependenciesMeta: {
|
|
2212
|
+
"@storm-software/tsdoc": {
|
|
2213
|
+
optional: true
|
|
2214
|
+
},
|
|
2215
|
+
eslint: {
|
|
2216
|
+
optional: false
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2219
|
+
publishConfig: {
|
|
2220
|
+
access: "public"
|
|
2221
|
+
},
|
|
2222
|
+
inlinedDependencies: {
|
|
2223
|
+
"eslint-plugin-tsdoc": "0.4.0"
|
|
2224
|
+
}
|
|
2225
|
+
};
|
|
2226
|
+
}
|
|
2227
|
+
});
|
|
2228
|
+
|
|
2229
|
+
// ../eslint-plugin-tsdoc/src/plugin.ts
|
|
2230
|
+
var import_eslint_plugin_tsdoc, plugin7;
|
|
2231
|
+
var init_plugin = __esm({
|
|
2232
|
+
"../eslint-plugin-tsdoc/src/plugin.ts"() {
|
|
2233
|
+
init_cjs_shims();
|
|
2234
|
+
import_eslint_plugin_tsdoc = __toESM(require_lib());
|
|
2235
|
+
init_package();
|
|
2236
|
+
plugin7 = {
|
|
2237
|
+
...import_eslint_plugin_tsdoc.default,
|
|
2238
|
+
meta: {
|
|
2239
|
+
name: "tsdoc",
|
|
2240
|
+
version: package_default3.version
|
|
2241
|
+
}
|
|
2242
|
+
};
|
|
2243
|
+
}
|
|
2244
|
+
});
|
|
2245
|
+
|
|
2246
|
+
// ../eslint-plugin-tsdoc/src/configs/recommended.ts
|
|
2247
|
+
var config5, recommended_default5;
|
|
2248
|
+
var init_recommended = __esm({
|
|
2249
|
+
"../eslint-plugin-tsdoc/src/configs/recommended.ts"() {
|
|
2250
|
+
init_cjs_shims();
|
|
2251
|
+
init_globs();
|
|
2252
|
+
init_plugin();
|
|
2253
|
+
config5 = {
|
|
2254
|
+
files: [GLOB_TS, GLOB_TSX],
|
|
2255
|
+
ignores: GLOB_EXCLUDE,
|
|
2256
|
+
name: "tsdoc/recommended",
|
|
2257
|
+
plugins: {
|
|
2258
|
+
tsdoc: plugin7
|
|
2259
|
+
},
|
|
2260
|
+
rules: {
|
|
2261
|
+
"tsdoc/syntax": ["error", { type: "recommended" }]
|
|
2262
|
+
}
|
|
2263
|
+
};
|
|
2264
|
+
recommended_default5 = config5;
|
|
2265
|
+
}
|
|
2266
|
+
});
|
|
2267
|
+
|
|
2268
|
+
// ../eslint-plugin-tsdoc/src/configs/index.ts
|
|
2269
|
+
var configs6;
|
|
2270
|
+
var init_configs = __esm({
|
|
2271
|
+
"../eslint-plugin-tsdoc/src/configs/index.ts"() {
|
|
2272
|
+
init_cjs_shims();
|
|
2273
|
+
init_recommended();
|
|
2274
|
+
configs6 = {
|
|
2275
|
+
recommended: recommended_default5
|
|
2276
|
+
};
|
|
2277
|
+
}
|
|
2278
|
+
});
|
|
2279
|
+
|
|
2280
|
+
// ../eslint-plugin-tsdoc/src/index.ts
|
|
2281
|
+
var src_exports = {};
|
|
2282
|
+
__export(src_exports, {
|
|
2283
|
+
configs: () => configs6,
|
|
2284
|
+
default: () => src_default3,
|
|
2285
|
+
rules: () => rules5
|
|
2286
|
+
});
|
|
2287
|
+
var eslintPlugin3, src_default3, rules5;
|
|
2288
|
+
var init_src = __esm({
|
|
2289
|
+
"../eslint-plugin-tsdoc/src/index.ts"() {
|
|
2290
|
+
init_cjs_shims();
|
|
2291
|
+
init_configs();
|
|
2292
|
+
init_plugin();
|
|
2293
|
+
eslintPlugin3 = {
|
|
2294
|
+
...plugin7,
|
|
2295
|
+
configs: configs6
|
|
2296
|
+
};
|
|
2297
|
+
src_default3 = eslintPlugin3;
|
|
2298
|
+
rules5 = plugin7.rules;
|
|
2299
|
+
}
|
|
2300
|
+
});
|
|
2301
|
+
|
|
1945
2302
|
// src/preset.ts
|
|
1946
2303
|
init_cjs_shims();
|
|
1947
2304
|
|
|
1948
2305
|
// src/configs/astro.ts
|
|
1949
2306
|
init_cjs_shims();
|
|
1950
|
-
|
|
1951
|
-
// ../package-constants/src/globs.ts
|
|
1952
|
-
init_cjs_shims();
|
|
1953
|
-
var GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
|
|
1954
|
-
var GLOB_SRC_FILE = `*.${GLOB_SRC_EXT}`;
|
|
1955
|
-
var GLOB_SRC = `**/${GLOB_SRC_FILE}`;
|
|
1956
|
-
var GLOB_JSX_EXT = "?([cm])jsx";
|
|
1957
|
-
var GLOB_JSX_FILE = `*.${GLOB_JSX_EXT}`;
|
|
1958
|
-
var GLOB_JSX = `**/${GLOB_JSX_FILE}`;
|
|
1959
|
-
var GLOB_TS_EXT = "?([cm])ts";
|
|
1960
|
-
var GLOB_TS_FILE = `*.${GLOB_TS_EXT}`;
|
|
1961
|
-
var GLOB_TS = `**/${GLOB_TS_FILE}`;
|
|
1962
|
-
var GLOB_TSX_EXT = "?([cm])tsx";
|
|
1963
|
-
var GLOB_TSX_FILE = `*.${GLOB_TSX_EXT}`;
|
|
1964
|
-
var GLOB_TSX = `**/${GLOB_TSX_FILE}`;
|
|
1965
|
-
var GLOB_CSS_EXT = "css";
|
|
1966
|
-
var GLOB_CSS_FILE = `*.${GLOB_CSS_EXT}`;
|
|
1967
|
-
var GLOB_CSS = `**/${GLOB_CSS_FILE}`;
|
|
1968
|
-
var GLOB_POSTCSS_EXT = "{p,post}css";
|
|
1969
|
-
var GLOB_POSTCSS_FILE = `*.${GLOB_POSTCSS_EXT}`;
|
|
1970
|
-
var GLOB_POSTCSS = `**/${GLOB_POSTCSS_FILE}`;
|
|
1971
|
-
var GLOB_LESS_EXT = "less";
|
|
1972
|
-
var GLOB_LESS_FILE = `*.${GLOB_LESS_EXT}`;
|
|
1973
|
-
var GLOB_LESS = `**/${GLOB_LESS_FILE}`;
|
|
1974
|
-
var GLOB_SCSS_EXT = "scss";
|
|
1975
|
-
var GLOB_SCSS_FILE = `*.${GLOB_SCSS_EXT}`;
|
|
1976
|
-
var GLOB_SCSS = `**/${GLOB_SCSS_FILE}`;
|
|
1977
|
-
var GLOB_JSON_EXT = "json";
|
|
1978
|
-
var GLOB_JSON_FILE = `*.${GLOB_JSON_EXT}`;
|
|
1979
|
-
var GLOB_JSON = `**/${GLOB_JSON_FILE}`;
|
|
1980
|
-
var GLOB_JSON5_EXT = "json5";
|
|
1981
|
-
var GLOB_JSON5_FILE = `*.${GLOB_JSON5_EXT}`;
|
|
1982
|
-
var GLOB_JSON5 = `**/${GLOB_JSON5_FILE}`;
|
|
1983
|
-
var GLOB_JSONC_EXT = "jsonc";
|
|
1984
|
-
var GLOB_JSONC_FILE = `*.${GLOB_JSONC_EXT}`;
|
|
1985
|
-
var GLOB_JSONC = `**/${GLOB_JSONC_FILE}`;
|
|
1986
|
-
var GLOB_MARKDOWN_EXT = "md";
|
|
1987
|
-
var GLOB_MARKDOWN_FILE = `*.${GLOB_MARKDOWN_EXT}`;
|
|
1988
|
-
var GLOB_MARKDOWN = `**/${GLOB_MARKDOWN_FILE}`;
|
|
1989
|
-
var GLOB_MDX_EXT = "mdx";
|
|
1990
|
-
var GLOB_MDX_FILE = `*.${GLOB_MDX_EXT}`;
|
|
1991
|
-
var GLOB_MDX = `**/${GLOB_MDX_FILE}`;
|
|
1992
|
-
var GLOB_MARKDOWN_IN_MARKDOWN = `${GLOB_MARKDOWN}/${GLOB_MARKDOWN_FILE}`;
|
|
1993
|
-
var GLOB_YAML_EXT = "y?(a)ml";
|
|
1994
|
-
var GLOB_YAML_FILE = `*.${GLOB_YAML_EXT}`;
|
|
1995
|
-
var GLOB_YAML = `**/${GLOB_YAML_FILE}`;
|
|
1996
|
-
var GLOB_TOML_EXT = "toml";
|
|
1997
|
-
var GLOB_TOML_FILE = `*.${GLOB_TOML_EXT}`;
|
|
1998
|
-
var GLOB_TOML = `**/${GLOB_TOML_FILE}`;
|
|
1999
|
-
var GLOB_XML_EXT = "xml";
|
|
2000
|
-
var GLOB_XML_FILE = `*.${GLOB_XML_EXT}`;
|
|
2001
|
-
var GLOB_XML = `**/${GLOB_XML_FILE}`;
|
|
2002
|
-
var GLOB_SVG_EXT = "svg";
|
|
2003
|
-
var GLOB_SVG_FILE = `*.${GLOB_SVG_EXT}`;
|
|
2004
|
-
var GLOB_SVG = `**/${GLOB_SVG_FILE}`;
|
|
2005
|
-
var GLOB_HTML_EXT = "htm?(l)";
|
|
2006
|
-
var GLOB_HTML_FILE = `*.${GLOB_HTML_EXT}`;
|
|
2007
|
-
var GLOB_HTML = `**/${GLOB_HTML_FILE}`;
|
|
2008
|
-
var GLOB_ASTRO_EXT = "astro";
|
|
2009
|
-
var GLOB_ASTRO_FILE = `*.${GLOB_ASTRO_EXT}`;
|
|
2010
|
-
var GLOB_ASTRO = `**/${GLOB_ASTRO_FILE}`;
|
|
2011
|
-
var GLOB_ASTRO_TS = `${GLOB_ASTRO}/*.ts`;
|
|
2012
|
-
var GLOB_GRAPHQL_EXT = "{g,graph}ql";
|
|
2013
|
-
var GLOB_GRAPHQL_FILE = `*.${GLOB_GRAPHQL_EXT}`;
|
|
2014
|
-
var GLOB_GRAPHQL = `**/${GLOB_GRAPHQL_FILE}`;
|
|
2015
|
-
var GLOB_TESTS = [
|
|
2016
|
-
`**/__tests__/**/*.${GLOB_SRC_EXT}`,
|
|
2017
|
-
`**/*.spec.${GLOB_SRC_EXT}`,
|
|
2018
|
-
`**/*.test.${GLOB_SRC_EXT}`,
|
|
2019
|
-
`**/*.bench.${GLOB_SRC_EXT}`,
|
|
2020
|
-
`**/*.benchmark.${GLOB_SRC_EXT}`
|
|
2021
|
-
];
|
|
2022
|
-
var GLOB_EXCLUDE = [
|
|
2023
|
-
"**/.git",
|
|
2024
|
-
"**/node_modules",
|
|
2025
|
-
"**/dist",
|
|
2026
|
-
"**/tmp",
|
|
2027
|
-
"**/coverage",
|
|
2028
|
-
"**/bench",
|
|
2029
|
-
"**/__snapshots__",
|
|
2030
|
-
"**/__test__",
|
|
2031
|
-
"**/__mocks__",
|
|
2032
|
-
"**/__generated__",
|
|
2033
|
-
"**/.wrangler",
|
|
2034
|
-
"**/.rolldown",
|
|
2035
|
-
"**/.docusaurus",
|
|
2036
|
-
"**/.tamagui",
|
|
2037
|
-
"**/tamagui.css",
|
|
2038
|
-
"**/.nx",
|
|
2039
|
-
"**/.next",
|
|
2040
|
-
"**/.storm",
|
|
2041
|
-
"**/.powerlines",
|
|
2042
|
-
"**/.shell-shock",
|
|
2043
|
-
"**/.earthquake",
|
|
2044
|
-
"**/.aftershock",
|
|
2045
|
-
"**/workbox*.js",
|
|
2046
|
-
"**/sw*.js",
|
|
2047
|
-
"**/service-worker.js",
|
|
2048
|
-
"**/fallback*.js",
|
|
2049
|
-
"**/ios",
|
|
2050
|
-
"**/.android",
|
|
2051
|
-
"**/.DS_Store",
|
|
2052
|
-
"**/Thumbs.db",
|
|
2053
|
-
"**/.cspellcache",
|
|
2054
|
-
"**/package-lock.*",
|
|
2055
|
-
"**/npm-lock.*",
|
|
2056
|
-
"**/pnpm-lock.*",
|
|
2057
|
-
"**/bun.lockb",
|
|
2058
|
-
"**/cargo.lock",
|
|
2059
|
-
"**/next-env.d.ts",
|
|
2060
|
-
"**/CODEOWNERS",
|
|
2061
|
-
"**/yarn.lock",
|
|
2062
|
-
"**/jest.preset.{js,ts,cjs,cts,mjs,mts,json}",
|
|
2063
|
-
"**/vitest.preset.{js,ts,cjs,cts,mjs,mts,json}",
|
|
2064
|
-
"**/jest.config.{js,ts,cjs,cts,mjs,mts,json}",
|
|
2065
|
-
"**/vitest.config.{js,ts,cjs,cts,mjs,mts,json}",
|
|
2066
|
-
"**/vitest.workspace.{js,ts,cjs,cts,mjs,mts,json}",
|
|
2067
|
-
"**/*.spec.{ts,tsx}",
|
|
2068
|
-
"**/*.test.{ts,tsx}",
|
|
2069
|
-
"**/output",
|
|
2070
|
-
"**/temp",
|
|
2071
|
-
"**/.temp",
|
|
2072
|
-
"**/.history",
|
|
2073
|
-
"**/.vitepress/cache",
|
|
2074
|
-
"**/.nuxt",
|
|
2075
|
-
"**/.svelte-kit",
|
|
2076
|
-
"**/.vercel",
|
|
2077
|
-
"**/.changeset",
|
|
2078
|
-
"**/.idea",
|
|
2079
|
-
"**/.cache",
|
|
2080
|
-
"**/.vite-inspect",
|
|
2081
|
-
"**/.yarn",
|
|
2082
|
-
"**/*.min.*",
|
|
2083
|
-
"**/CHANGELOG*.md",
|
|
2084
|
-
"**/CONTRIBUTING.md",
|
|
2085
|
-
"**/SECURITY.md",
|
|
2086
|
-
"**/CODE_OF_CONDUCT.md",
|
|
2087
|
-
"**/PULL_REQUEST_TEMPLATE.md",
|
|
2088
|
-
"**/LICENSE*",
|
|
2089
|
-
"**/auto-import?(s).d.ts",
|
|
2090
|
-
"**/components.d.ts",
|
|
2091
|
-
"**/vite.config.*.timestamp-*",
|
|
2092
|
-
"**/webpack.config.*.timestamp-*",
|
|
2093
|
-
"**/rollup.config.*.timestamp-*",
|
|
2094
|
-
"**/nx/**/schema.d.ts",
|
|
2095
|
-
"**/nx/**/schema.json",
|
|
2096
|
-
"**/nx/**/schema.md",
|
|
2097
|
-
"**/nx/**/*.schema.d.ts",
|
|
2098
|
-
"**/nx/**/*.schema.json",
|
|
2099
|
-
"**/nx/**/*.schema.md",
|
|
2100
|
-
"**/nx/**/generators/**/files",
|
|
2101
|
-
".agents/**/*",
|
|
2102
|
-
"**/.agents/**/*",
|
|
2103
|
-
".claude/**/*",
|
|
2104
|
-
"**/.claude/**/*",
|
|
2105
|
-
".codex/**/*",
|
|
2106
|
-
"**/.codex/**/*",
|
|
2107
|
-
".cursor/**/*",
|
|
2108
|
-
"**/.cursor/**/*",
|
|
2109
|
-
".opencode/**/*",
|
|
2110
|
-
"**/.opencode/**/*",
|
|
2111
|
-
".nx/**/*",
|
|
2112
|
-
"**/.nx/**/*"
|
|
2113
|
-
];
|
|
2307
|
+
init_globs();
|
|
2114
2308
|
|
|
2115
2309
|
// src/utils/helpers.ts
|
|
2116
2310
|
init_cjs_shims();
|
|
@@ -5709,13 +5903,14 @@ init_cjs_shims();
|
|
|
5709
5903
|
|
|
5710
5904
|
// ../eslint-plugin-banner/src/configs/recommended.ts
|
|
5711
5905
|
init_cjs_shims();
|
|
5906
|
+
init_globs();
|
|
5712
5907
|
|
|
5713
5908
|
// ../eslint-plugin-banner/src/plugin.ts
|
|
5714
5909
|
init_cjs_shims();
|
|
5715
5910
|
|
|
5716
5911
|
// ../eslint-plugin-banner/package.json
|
|
5717
5912
|
var package_default = {
|
|
5718
|
-
version: "0.0.
|
|
5913
|
+
version: "0.0.37"};
|
|
5719
5914
|
|
|
5720
5915
|
// ../eslint-plugin-banner/src/rules/banner.ts
|
|
5721
5916
|
init_cjs_shims();
|
|
@@ -6615,6 +6810,7 @@ async function cspell(options = {}) {
|
|
|
6615
6810
|
|
|
6616
6811
|
// src/configs/disables.ts
|
|
6617
6812
|
init_cjs_shims();
|
|
6813
|
+
init_globs();
|
|
6618
6814
|
async function disables() {
|
|
6619
6815
|
return [
|
|
6620
6816
|
{
|
|
@@ -6662,6 +6858,7 @@ async function disables() {
|
|
|
6662
6858
|
|
|
6663
6859
|
// src/configs/formatters.ts
|
|
6664
6860
|
init_cjs_shims();
|
|
6861
|
+
init_globs();
|
|
6665
6862
|
|
|
6666
6863
|
// src/configs/stylistic.ts
|
|
6667
6864
|
init_cjs_shims();
|
|
@@ -7161,6 +7358,7 @@ async function graphql(options = {}) {
|
|
|
7161
7358
|
|
|
7162
7359
|
// src/configs/ignores.ts
|
|
7163
7360
|
init_cjs_shims();
|
|
7361
|
+
init_globs();
|
|
7164
7362
|
async function ignores(userIgnores = []) {
|
|
7165
7363
|
return [
|
|
7166
7364
|
{
|
|
@@ -18624,6 +18822,7 @@ async function jsdoc(options = {}) {
|
|
|
18624
18822
|
|
|
18625
18823
|
// src/configs/jsonc.ts
|
|
18626
18824
|
init_cjs_shims();
|
|
18825
|
+
init_globs();
|
|
18627
18826
|
async function jsonc(options = {}) {
|
|
18628
18827
|
const {
|
|
18629
18828
|
files = [GLOB_JSON, GLOB_JSON5, GLOB_JSONC],
|
|
@@ -18704,6 +18903,7 @@ async function jsonc(options = {}) {
|
|
|
18704
18903
|
|
|
18705
18904
|
// src/configs/jsx.ts
|
|
18706
18905
|
init_cjs_shims();
|
|
18906
|
+
init_globs();
|
|
18707
18907
|
async function jsx() {
|
|
18708
18908
|
await ensurePackages(["eslint-plugin-jsx-a11y"]);
|
|
18709
18909
|
const [pluginJsxA11y] = await Promise.all([
|
|
@@ -18883,6 +19083,7 @@ async function jsx() {
|
|
|
18883
19083
|
|
|
18884
19084
|
// src/configs/markdown.ts
|
|
18885
19085
|
init_cjs_shims();
|
|
19086
|
+
init_globs();
|
|
18886
19087
|
async function markdown(options = {}) {
|
|
18887
19088
|
const { files = [GLOB_MARKDOWN], overrides = {} } = options;
|
|
18888
19089
|
const markdown2 = await interopDefault(import('@eslint/markdown'));
|
|
@@ -18960,6 +19161,7 @@ async function markdown(options = {}) {
|
|
|
18960
19161
|
|
|
18961
19162
|
// src/configs/mdx.ts
|
|
18962
19163
|
init_cjs_shims();
|
|
19164
|
+
init_globs();
|
|
18963
19165
|
async function mdx(options = {}) {
|
|
18964
19166
|
const { files = [GLOB_MDX], overrides = {} } = options;
|
|
18965
19167
|
await ensurePackages(["eslint-plugin-mdx"]);
|
|
@@ -19186,6 +19388,7 @@ init_cjs_shims();
|
|
|
19186
19388
|
|
|
19187
19389
|
// ../eslint-plugin-pnpm/src/configs/recommended.ts
|
|
19188
19390
|
init_cjs_shims();
|
|
19391
|
+
init_globs();
|
|
19189
19392
|
|
|
19190
19393
|
// ../eslint-plugin-pnpm/src/plugin.ts
|
|
19191
19394
|
init_cjs_shims();
|
|
@@ -19873,7 +20076,7 @@ plugin3.configs = configs3;
|
|
|
19873
20076
|
|
|
19874
20077
|
// ../eslint-plugin-pnpm/package.json
|
|
19875
20078
|
var package_default2 = {
|
|
19876
|
-
version: "0.0.
|
|
20079
|
+
version: "0.0.35"};
|
|
19877
20080
|
|
|
19878
20081
|
// ../eslint-plugin-pnpm/src/plugin.ts
|
|
19879
20082
|
var plugin4 = {
|
|
@@ -20064,6 +20267,7 @@ async function prettier() {
|
|
|
20064
20267
|
|
|
20065
20268
|
// src/configs/react.ts
|
|
20066
20269
|
init_cjs_shims();
|
|
20270
|
+
init_globs();
|
|
20067
20271
|
var ReactRefreshAllowConstantExportPackages = ["vite"];
|
|
20068
20272
|
var ReactRouterPackages = [
|
|
20069
20273
|
"@react-router/node",
|
|
@@ -20642,6 +20846,7 @@ async function storybook(options = {}) {
|
|
|
20642
20846
|
|
|
20643
20847
|
// src/configs/test.ts
|
|
20644
20848
|
init_cjs_shims();
|
|
20849
|
+
init_globs();
|
|
20645
20850
|
var plugin6;
|
|
20646
20851
|
async function test(options = {}) {
|
|
20647
20852
|
const { files = GLOB_TESTS, isInEditor = false, overrides = {} } = options;
|
|
@@ -20692,6 +20897,7 @@ async function test(options = {}) {
|
|
|
20692
20897
|
|
|
20693
20898
|
// src/configs/toml.ts
|
|
20694
20899
|
init_cjs_shims();
|
|
20900
|
+
init_globs();
|
|
20695
20901
|
async function toml(options = {}) {
|
|
20696
20902
|
const { files = [GLOB_TOML], overrides = {}, stylistic: stylistic2 = true } = options;
|
|
20697
20903
|
const { indent = 2 } = typeof stylistic2 === "boolean" ? {} : stylistic2;
|
|
@@ -20743,61 +20949,7 @@ async function toml(options = {}) {
|
|
|
20743
20949
|
|
|
20744
20950
|
// src/configs/tsdoc.ts
|
|
20745
20951
|
init_cjs_shims();
|
|
20746
|
-
|
|
20747
|
-
// ../eslint-plugin-tsdoc/src/index.ts
|
|
20748
|
-
init_cjs_shims();
|
|
20749
|
-
|
|
20750
|
-
// ../eslint-plugin-tsdoc/src/configs/index.ts
|
|
20751
|
-
init_cjs_shims();
|
|
20752
|
-
|
|
20753
|
-
// ../eslint-plugin-tsdoc/src/configs/recommended.ts
|
|
20754
|
-
init_cjs_shims();
|
|
20755
|
-
|
|
20756
|
-
// ../eslint-plugin-tsdoc/src/plugin.ts
|
|
20757
|
-
init_cjs_shims();
|
|
20758
|
-
var import_eslint_plugin_tsdoc = __toESM(require_lib());
|
|
20759
|
-
|
|
20760
|
-
// ../eslint-plugin-tsdoc/package.json
|
|
20761
|
-
var package_default3 = {
|
|
20762
|
-
version: "0.0.33"};
|
|
20763
|
-
|
|
20764
|
-
// ../eslint-plugin-tsdoc/src/plugin.ts
|
|
20765
|
-
var plugin7 = {
|
|
20766
|
-
...import_eslint_plugin_tsdoc.default,
|
|
20767
|
-
meta: {
|
|
20768
|
-
name: "tsdoc",
|
|
20769
|
-
version: package_default3.version
|
|
20770
|
-
}
|
|
20771
|
-
};
|
|
20772
|
-
|
|
20773
|
-
// ../eslint-plugin-tsdoc/src/configs/recommended.ts
|
|
20774
|
-
var config5 = {
|
|
20775
|
-
files: [GLOB_TS, GLOB_TSX],
|
|
20776
|
-
ignores: GLOB_EXCLUDE,
|
|
20777
|
-
name: "tsdoc/recommended",
|
|
20778
|
-
plugins: {
|
|
20779
|
-
tsdoc: plugin7
|
|
20780
|
-
},
|
|
20781
|
-
rules: {
|
|
20782
|
-
"tsdoc/syntax": ["error", { type: "recommended" }]
|
|
20783
|
-
}
|
|
20784
|
-
};
|
|
20785
|
-
var recommended_default5 = config5;
|
|
20786
|
-
|
|
20787
|
-
// ../eslint-plugin-tsdoc/src/configs/index.ts
|
|
20788
|
-
var configs6 = {
|
|
20789
|
-
recommended: recommended_default5
|
|
20790
|
-
};
|
|
20791
|
-
|
|
20792
|
-
// ../eslint-plugin-tsdoc/src/index.ts
|
|
20793
|
-
var eslintPlugin3 = {
|
|
20794
|
-
...plugin7,
|
|
20795
|
-
configs: configs6
|
|
20796
|
-
};
|
|
20797
|
-
var src_default3 = eslintPlugin3;
|
|
20798
|
-
plugin7.rules;
|
|
20799
|
-
|
|
20800
|
-
// src/configs/tsdoc.ts
|
|
20952
|
+
init_globs();
|
|
20801
20953
|
async function tsdoc(options = {}) {
|
|
20802
20954
|
const {
|
|
20803
20955
|
severity = "error",
|
|
@@ -20805,12 +20957,16 @@ async function tsdoc(options = {}) {
|
|
|
20805
20957
|
configFile,
|
|
20806
20958
|
files = [GLOB_TS, GLOB_TSX]
|
|
20807
20959
|
} = options;
|
|
20960
|
+
await ensurePackages(["@storm-software/eslint-plugin-tsdoc"]);
|
|
20961
|
+
const [pluginTsdoc] = await Promise.all([
|
|
20962
|
+
interopDefault(Promise.resolve().then(() => (init_src(), src_exports)))
|
|
20963
|
+
]);
|
|
20808
20964
|
return [
|
|
20809
20965
|
{
|
|
20810
20966
|
files,
|
|
20811
20967
|
name: "storm/tsdoc/rules",
|
|
20812
20968
|
plugins: {
|
|
20813
|
-
tsdoc:
|
|
20969
|
+
tsdoc: pluginTsdoc
|
|
20814
20970
|
},
|
|
20815
20971
|
rules: {
|
|
20816
20972
|
"tsdoc/syntax": [
|
|
@@ -20824,6 +20980,7 @@ async function tsdoc(options = {}) {
|
|
|
20824
20980
|
|
|
20825
20981
|
// src/configs/typescript.ts
|
|
20826
20982
|
init_cjs_shims();
|
|
20983
|
+
init_globs();
|
|
20827
20984
|
async function typescript(options = {}) {
|
|
20828
20985
|
const {
|
|
20829
20986
|
componentExts = [],
|
|
@@ -21176,6 +21333,7 @@ async function unocss(options = {}) {
|
|
|
21176
21333
|
|
|
21177
21334
|
// src/configs/yaml.ts
|
|
21178
21335
|
init_cjs_shims();
|
|
21336
|
+
init_globs();
|
|
21179
21337
|
async function yaml(options = {}) {
|
|
21180
21338
|
const { files = [GLOB_YAML], overrides = {}, stylistic: stylistic2 = true } = options;
|
|
21181
21339
|
const { indent = 2, quotes = "single" } = typeof stylistic2 === "boolean" ? {} : stylistic2;
|
|
@@ -21235,6 +21393,7 @@ async function yaml(options = {}) {
|
|
|
21235
21393
|
|
|
21236
21394
|
// src/configs/zod.ts
|
|
21237
21395
|
init_cjs_shims();
|
|
21396
|
+
init_globs();
|
|
21238
21397
|
async function zod(options = {}) {
|
|
21239
21398
|
const { overrides = {} } = options;
|
|
21240
21399
|
return [
|