@luxass/eslint-config 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -3
- package/dist/chunk-C5YCKPY4.mjs +274 -0
- package/dist/configs/astro.d.cts +1 -1
- package/dist/configs/astro.d.ts +1 -1
- package/dist/configs/comments.d.cts +1 -1
- package/dist/configs/comments.d.ts +1 -1
- package/dist/configs/formatters.d.cts +1 -1
- package/dist/configs/formatters.d.ts +1 -1
- package/dist/configs/ignores.d.cts +1 -1
- package/dist/configs/ignores.d.ts +1 -1
- package/dist/configs/imports.d.cts +1 -1
- package/dist/configs/imports.d.ts +1 -1
- package/dist/configs/index.d.cts +1 -1
- package/dist/configs/index.d.ts +1 -1
- package/dist/configs/index.mjs +3 -3
- package/dist/configs/javascript.d.cts +1 -1
- package/dist/configs/javascript.d.ts +1 -1
- package/dist/configs/jsdoc.d.cts +1 -1
- package/dist/configs/jsdoc.d.ts +1 -1
- package/dist/configs/jsonc.d.cts +1 -1
- package/dist/configs/jsonc.d.ts +1 -1
- package/dist/configs/markdown.d.cts +1 -1
- package/dist/configs/markdown.d.ts +1 -1
- package/dist/configs/nextjs.d.cts +1 -1
- package/dist/configs/nextjs.d.ts +1 -1
- package/dist/configs/node.d.cts +1 -1
- package/dist/configs/node.d.ts +1 -1
- package/dist/configs/perfectionist.d.cts +1 -1
- package/dist/configs/perfectionist.d.ts +1 -1
- package/dist/configs/react.d.cts +1 -1
- package/dist/configs/react.d.ts +1 -1
- package/dist/configs/solid.cjs +360 -0
- package/dist/configs/solid.d.cts +11 -0
- package/dist/configs/solid.d.ts +11 -0
- package/dist/configs/solid.mjs +8 -0
- package/dist/configs/sort.d.cts +1 -1
- package/dist/configs/sort.d.ts +1 -1
- package/dist/configs/stylistic.d.cts +1 -1
- package/dist/configs/stylistic.d.ts +1 -1
- package/dist/configs/tailwindcss.d.cts +1 -1
- package/dist/configs/tailwindcss.d.ts +1 -1
- package/dist/configs/test.d.cts +1 -1
- package/dist/configs/test.d.ts +1 -1
- package/dist/configs/toml.d.cts +1 -1
- package/dist/configs/toml.d.ts +1 -1
- package/dist/configs/typescript.d.cts +1 -1
- package/dist/configs/typescript.d.ts +1 -1
- package/dist/configs/unicorn.d.cts +1 -1
- package/dist/configs/unicorn.d.ts +1 -1
- package/dist/configs/unocss.d.cts +1 -1
- package/dist/configs/unocss.d.ts +1 -1
- package/dist/configs/vue.d.cts +1 -1
- package/dist/configs/vue.d.ts +1 -1
- package/dist/configs/yaml.d.cts +1 -1
- package/dist/configs/yaml.d.ts +1 -1
- package/dist/index.cjs +278 -0
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +22 -3
- package/dist/{types-kS9TgR8_.d.cts → types-A-NO9UF1.d.cts} +40 -4
- package/dist/{types-kS9TgR8_.d.ts → types-A-NO9UF1.d.ts} +40 -4
- package/package.json +6 -1
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// src/configs/solid.ts
|
|
31
|
+
var solid_exports = {};
|
|
32
|
+
__export(solid_exports, {
|
|
33
|
+
solid: () => solid
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(solid_exports);
|
|
36
|
+
|
|
37
|
+
// src/globs.ts
|
|
38
|
+
var GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
|
|
39
|
+
var GLOB_SRC = `**/*.${GLOB_SRC_EXT}`;
|
|
40
|
+
var GLOB_JSX = "**/*.?([cm])jsx";
|
|
41
|
+
var GLOB_TSX = "**/*.?([cm])tsx";
|
|
42
|
+
var GLOB_MARKDOWN = "**/*.md";
|
|
43
|
+
var GLOB_MARKDOWN_CODE = `${GLOB_MARKDOWN}/${GLOB_SRC}`;
|
|
44
|
+
var GLOB_TESTS = [
|
|
45
|
+
`**/__tests__/**/*.${GLOB_SRC_EXT}`,
|
|
46
|
+
`**/*.spec.${GLOB_SRC_EXT}`,
|
|
47
|
+
`**/*.test.${GLOB_SRC_EXT}`,
|
|
48
|
+
`**/*.bench.${GLOB_SRC_EXT}`,
|
|
49
|
+
`**/*.benchmark.${GLOB_SRC_EXT}`
|
|
50
|
+
];
|
|
51
|
+
var GLOB_NEXTJS_ROUTES = [
|
|
52
|
+
`**/app/**/page.${GLOB_SRC_EXT}`,
|
|
53
|
+
`**/app/**/layout.${GLOB_SRC_EXT}`,
|
|
54
|
+
`**/app/**/error.${GLOB_SRC_EXT}`,
|
|
55
|
+
`**/app/**/template.${GLOB_SRC_EXT}`,
|
|
56
|
+
`**/app/**/not-found.${GLOB_SRC_EXT}`,
|
|
57
|
+
`**/app/**/loading.${GLOB_SRC_EXT}`,
|
|
58
|
+
`**/app/**/robots.${GLOB_SRC_EXT}`,
|
|
59
|
+
`**/app/**/sitemap.${GLOB_SRC_EXT}`,
|
|
60
|
+
`**/pages/**/*.${GLOB_SRC_EXT}`
|
|
61
|
+
];
|
|
62
|
+
|
|
63
|
+
// src/utils.ts
|
|
64
|
+
var import_node_process = __toESM(require("process"), 1);
|
|
65
|
+
var import_local_pkg = require("local-pkg");
|
|
66
|
+
async function interop(m) {
|
|
67
|
+
const resolved = await m;
|
|
68
|
+
return resolved.default || resolved;
|
|
69
|
+
}
|
|
70
|
+
async function ensure(packages) {
|
|
71
|
+
if (import_node_process.default.env.CI || import_node_process.default.stdout.isTTY === false) {
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
;
|
|
75
|
+
const nonExistingPackages = packages.filter((i) => !(0, import_local_pkg.isPackageExists)(i));
|
|
76
|
+
if (nonExistingPackages.length === 0) {
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
;
|
|
80
|
+
const { default: prompts } = await import("prompts");
|
|
81
|
+
const { result } = await prompts([
|
|
82
|
+
{
|
|
83
|
+
name: "result",
|
|
84
|
+
message: `${nonExistingPackages.length === 1 ? "Package is" : "Packages are"} required for this config: ${nonExistingPackages.join(", ")}. Do you want to install them?`,
|
|
85
|
+
type: "confirm"
|
|
86
|
+
}
|
|
87
|
+
]);
|
|
88
|
+
if (result) {
|
|
89
|
+
await import("@antfu/install-pkg").then((i) => i.installPackage(nonExistingPackages, {
|
|
90
|
+
dev: true
|
|
91
|
+
}));
|
|
92
|
+
}
|
|
93
|
+
;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// src/configs/solid.ts
|
|
97
|
+
async function solid(options = {}) {
|
|
98
|
+
const {
|
|
99
|
+
a11y = false,
|
|
100
|
+
files = [GLOB_JSX, GLOB_TSX],
|
|
101
|
+
overrides = {},
|
|
102
|
+
typescript = true
|
|
103
|
+
} = options;
|
|
104
|
+
await ensure([
|
|
105
|
+
"eslint-plugin-solid"
|
|
106
|
+
]);
|
|
107
|
+
const [
|
|
108
|
+
pluginSolid
|
|
109
|
+
] = await Promise.all([
|
|
110
|
+
interop(import("eslint-plugin-solid"))
|
|
111
|
+
]);
|
|
112
|
+
return [
|
|
113
|
+
{
|
|
114
|
+
name: "luxass:solid:setup",
|
|
115
|
+
plugins: {
|
|
116
|
+
solid: pluginSolid
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
name: "luxass:solid:rules",
|
|
121
|
+
files,
|
|
122
|
+
languageOptions: {
|
|
123
|
+
parserOptions: {
|
|
124
|
+
ecmaFeatures: {
|
|
125
|
+
jsx: true
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
sourceType: "module"
|
|
129
|
+
},
|
|
130
|
+
rules: {
|
|
131
|
+
...a11y ? {
|
|
132
|
+
// recommended rules for jsx-a11y
|
|
133
|
+
"jsx-a11y/alt-text": "error",
|
|
134
|
+
"jsx-a11y/anchor-ambiguous-text": "off",
|
|
135
|
+
"jsx-a11y/anchor-has-content": "error",
|
|
136
|
+
"jsx-a11y/anchor-is-valid": "error",
|
|
137
|
+
"jsx-a11y/aria-activedescendant-has-tabindex": "error",
|
|
138
|
+
"jsx-a11y/aria-props": "error",
|
|
139
|
+
"jsx-a11y/aria-proptypes": "error",
|
|
140
|
+
"jsx-a11y/aria-role": "error",
|
|
141
|
+
"jsx-a11y/aria-unsupported-elements": "error",
|
|
142
|
+
"jsx-a11y/autocomplete-valid": "error",
|
|
143
|
+
"jsx-a11y/click-events-have-key-events": "error",
|
|
144
|
+
"jsx-a11y/control-has-associated-label": [
|
|
145
|
+
"off",
|
|
146
|
+
{
|
|
147
|
+
ignoreElements: [
|
|
148
|
+
"audio",
|
|
149
|
+
"canvas",
|
|
150
|
+
"embed",
|
|
151
|
+
"input",
|
|
152
|
+
"textarea",
|
|
153
|
+
"tr",
|
|
154
|
+
"video"
|
|
155
|
+
],
|
|
156
|
+
ignoreRoles: [
|
|
157
|
+
"grid",
|
|
158
|
+
"listbox",
|
|
159
|
+
"menu",
|
|
160
|
+
"menubar",
|
|
161
|
+
"radiogroup",
|
|
162
|
+
"row",
|
|
163
|
+
"tablist",
|
|
164
|
+
"toolbar",
|
|
165
|
+
"tree",
|
|
166
|
+
"treegrid"
|
|
167
|
+
],
|
|
168
|
+
includeRoles: [
|
|
169
|
+
"alert",
|
|
170
|
+
"dialog"
|
|
171
|
+
]
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"jsx-a11y/heading-has-content": "error",
|
|
175
|
+
"jsx-a11y/html-has-lang": "error",
|
|
176
|
+
"jsx-a11y/iframe-has-title": "error",
|
|
177
|
+
"jsx-a11y/img-redundant-alt": "error",
|
|
178
|
+
"jsx-a11y/interactive-supports-focus": [
|
|
179
|
+
"error",
|
|
180
|
+
{
|
|
181
|
+
tabbable: [
|
|
182
|
+
"button",
|
|
183
|
+
"checkbox",
|
|
184
|
+
"link",
|
|
185
|
+
"searchbox",
|
|
186
|
+
"spinbutton",
|
|
187
|
+
"switch",
|
|
188
|
+
"textbox"
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"jsx-a11y/label-has-associated-control": "error",
|
|
193
|
+
"jsx-a11y/label-has-for": "off",
|
|
194
|
+
"jsx-a11y/media-has-caption": "error",
|
|
195
|
+
"jsx-a11y/mouse-events-have-key-events": "error",
|
|
196
|
+
"jsx-a11y/no-access-key": "error",
|
|
197
|
+
"jsx-a11y/no-autofocus": "error",
|
|
198
|
+
"jsx-a11y/no-distracting-elements": "error",
|
|
199
|
+
"jsx-a11y/no-interactive-element-to-noninteractive-role": [
|
|
200
|
+
"error",
|
|
201
|
+
{
|
|
202
|
+
canvas: [
|
|
203
|
+
"img"
|
|
204
|
+
],
|
|
205
|
+
tr: [
|
|
206
|
+
"none",
|
|
207
|
+
"presentation"
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"jsx-a11y/no-noninteractive-element-interactions": [
|
|
212
|
+
"error",
|
|
213
|
+
{
|
|
214
|
+
alert: [
|
|
215
|
+
"onKeyUp",
|
|
216
|
+
"onKeyDown",
|
|
217
|
+
"onKeyPress"
|
|
218
|
+
],
|
|
219
|
+
body: [
|
|
220
|
+
"onError",
|
|
221
|
+
"onLoad"
|
|
222
|
+
],
|
|
223
|
+
dialog: [
|
|
224
|
+
"onKeyUp",
|
|
225
|
+
"onKeyDown",
|
|
226
|
+
"onKeyPress"
|
|
227
|
+
],
|
|
228
|
+
handlers: [
|
|
229
|
+
"onClick",
|
|
230
|
+
"onError",
|
|
231
|
+
"onLoad",
|
|
232
|
+
"onMouseDown",
|
|
233
|
+
"onMouseUp",
|
|
234
|
+
"onKeyPress",
|
|
235
|
+
"onKeyDown",
|
|
236
|
+
"onKeyUp"
|
|
237
|
+
],
|
|
238
|
+
iframe: [
|
|
239
|
+
"onError",
|
|
240
|
+
"onLoad"
|
|
241
|
+
],
|
|
242
|
+
img: [
|
|
243
|
+
"onError",
|
|
244
|
+
"onLoad"
|
|
245
|
+
]
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"jsx-a11y/no-noninteractive-element-to-interactive-role": [
|
|
249
|
+
"error",
|
|
250
|
+
{
|
|
251
|
+
fieldset: [
|
|
252
|
+
"radiogroup",
|
|
253
|
+
"presentation"
|
|
254
|
+
],
|
|
255
|
+
li: [
|
|
256
|
+
"menuitem",
|
|
257
|
+
"option",
|
|
258
|
+
"row",
|
|
259
|
+
"tab",
|
|
260
|
+
"treeitem"
|
|
261
|
+
],
|
|
262
|
+
ol: [
|
|
263
|
+
"listbox",
|
|
264
|
+
"menu",
|
|
265
|
+
"menubar",
|
|
266
|
+
"radiogroup",
|
|
267
|
+
"tablist",
|
|
268
|
+
"tree",
|
|
269
|
+
"treegrid"
|
|
270
|
+
],
|
|
271
|
+
table: [
|
|
272
|
+
"grid"
|
|
273
|
+
],
|
|
274
|
+
td: [
|
|
275
|
+
"gridcell"
|
|
276
|
+
],
|
|
277
|
+
ul: [
|
|
278
|
+
"listbox",
|
|
279
|
+
"menu",
|
|
280
|
+
"menubar",
|
|
281
|
+
"radiogroup",
|
|
282
|
+
"tablist",
|
|
283
|
+
"tree",
|
|
284
|
+
"treegrid"
|
|
285
|
+
]
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"jsx-a11y/no-noninteractive-tabindex": [
|
|
289
|
+
"error",
|
|
290
|
+
{
|
|
291
|
+
allowExpressionValues: true,
|
|
292
|
+
roles: [
|
|
293
|
+
"tabpanel"
|
|
294
|
+
],
|
|
295
|
+
tags: []
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"jsx-a11y/no-redundant-roles": "error",
|
|
299
|
+
"jsx-a11y/no-static-element-interactions": [
|
|
300
|
+
"error",
|
|
301
|
+
{
|
|
302
|
+
allowExpressionValues: true,
|
|
303
|
+
handlers: [
|
|
304
|
+
"onClick",
|
|
305
|
+
"onMouseDown",
|
|
306
|
+
"onMouseUp",
|
|
307
|
+
"onKeyPress",
|
|
308
|
+
"onKeyDown",
|
|
309
|
+
"onKeyUp"
|
|
310
|
+
]
|
|
311
|
+
}
|
|
312
|
+
],
|
|
313
|
+
"jsx-a11y/role-has-required-aria-props": "error",
|
|
314
|
+
"jsx-a11y/role-supports-aria-props": "error",
|
|
315
|
+
"jsx-a11y/scope": "error",
|
|
316
|
+
"jsx-a11y/tabindex-no-positive": "error"
|
|
317
|
+
} : {},
|
|
318
|
+
// solid recommended rules
|
|
319
|
+
// reactivity
|
|
320
|
+
"solid/components-return-once": 1,
|
|
321
|
+
"solid/event-handlers": 1,
|
|
322
|
+
// these rules are mostly style suggestions
|
|
323
|
+
"solid/imports": 1,
|
|
324
|
+
// identifier usage is important
|
|
325
|
+
"solid/jsx-no-duplicate-props": 2,
|
|
326
|
+
"solid/jsx-no-script-url": 2,
|
|
327
|
+
"solid/jsx-no-undef": 2,
|
|
328
|
+
"solid/jsx-uses-vars": 2,
|
|
329
|
+
"solid/no-array-handlers": 0,
|
|
330
|
+
"solid/no-destructure": 2,
|
|
331
|
+
// security problems
|
|
332
|
+
"solid/no-innerhtml": 2,
|
|
333
|
+
// only necessary for resource-constrained environments
|
|
334
|
+
"solid/no-proxy-apis": 0,
|
|
335
|
+
"solid/no-react-deps": 1,
|
|
336
|
+
"solid/no-react-specific-props": 1,
|
|
337
|
+
"solid/no-unknown-namespaces": 2,
|
|
338
|
+
// deprecated
|
|
339
|
+
"solid/prefer-classlist": 0,
|
|
340
|
+
"solid/prefer-for": 2,
|
|
341
|
+
// handled by Solid compiler, opt-in style suggestion
|
|
342
|
+
"solid/prefer-show": 0,
|
|
343
|
+
"solid/reactivity": 1,
|
|
344
|
+
"solid/self-closing-comp": 1,
|
|
345
|
+
"solid/style-prop": 1,
|
|
346
|
+
...typescript ? {
|
|
347
|
+
"solid/jsx-no-undef": [2, { typescriptEnabled: true }],
|
|
348
|
+
// namespaces taken care of by TS
|
|
349
|
+
"solid/no-unknown-namespaces": 0
|
|
350
|
+
} : {},
|
|
351
|
+
// overrides
|
|
352
|
+
...overrides
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
];
|
|
356
|
+
}
|
|
357
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
358
|
+
0 && (module.exports = {
|
|
359
|
+
solid
|
|
360
|
+
});
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { w as SolidOptions, x as solid } from '../types-A-NO9UF1.cjs';
|
|
2
|
+
import 'eslint-config-flat-gitignore';
|
|
3
|
+
import '@antfu/eslint-define-config';
|
|
4
|
+
import '@eslint-types/jsdoc/types';
|
|
5
|
+
import '@eslint-types/typescript-eslint/types';
|
|
6
|
+
import '@eslint-types/unicorn/types';
|
|
7
|
+
import 'eslint-plugin-antfu';
|
|
8
|
+
import '@stylistic/eslint-plugin';
|
|
9
|
+
import 'eslint';
|
|
10
|
+
import '@typescript-eslint/parser';
|
|
11
|
+
import 'eslint-processor-vue-blocks';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { w as SolidOptions, x as solid } from '../types-A-NO9UF1.js';
|
|
2
|
+
import 'eslint-config-flat-gitignore';
|
|
3
|
+
import '@antfu/eslint-define-config';
|
|
4
|
+
import '@eslint-types/jsdoc/types';
|
|
5
|
+
import '@eslint-types/typescript-eslint/types';
|
|
6
|
+
import '@eslint-types/unicorn/types';
|
|
7
|
+
import 'eslint-plugin-antfu';
|
|
8
|
+
import '@stylistic/eslint-plugin';
|
|
9
|
+
import 'eslint';
|
|
10
|
+
import '@typescript-eslint/parser';
|
|
11
|
+
import 'eslint-processor-vue-blocks';
|
package/dist/configs/sort.d.cts
CHANGED
package/dist/configs/sort.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@stylistic/eslint-plugin';
|
|
2
|
-
export { S as StylisticConfig, o as StylisticConfigDefaults, c as StylisticOptions, s as stylistic } from '../types-
|
|
2
|
+
export { S as StylisticConfig, o as StylisticConfigDefaults, c as StylisticOptions, s as stylistic } from '../types-A-NO9UF1.cjs';
|
|
3
3
|
import 'eslint-config-flat-gitignore';
|
|
4
4
|
import '@antfu/eslint-define-config';
|
|
5
5
|
import '@eslint-types/jsdoc/types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@stylistic/eslint-plugin';
|
|
2
|
-
export { S as StylisticConfig, o as StylisticConfigDefaults, c as StylisticOptions, s as stylistic } from '../types-
|
|
2
|
+
export { S as StylisticConfig, o as StylisticConfigDefaults, c as StylisticOptions, s as stylistic } from '../types-A-NO9UF1.js';
|
|
3
3
|
import 'eslint-config-flat-gitignore';
|
|
4
4
|
import '@antfu/eslint-define-config';
|
|
5
5
|
import '@eslint-types/jsdoc/types';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { h as TailwindCSSOptions, g as tailwindcss } from '../types-
|
|
1
|
+
export { h as TailwindCSSOptions, g as tailwindcss } from '../types-A-NO9UF1.cjs';
|
|
2
2
|
import 'eslint-config-flat-gitignore';
|
|
3
3
|
import '@antfu/eslint-define-config';
|
|
4
4
|
import '@eslint-types/jsdoc/types';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { h as TailwindCSSOptions, g as tailwindcss } from '../types-
|
|
1
|
+
export { h as TailwindCSSOptions, g as tailwindcss } from '../types-A-NO9UF1.js';
|
|
2
2
|
import 'eslint-config-flat-gitignore';
|
|
3
3
|
import '@antfu/eslint-define-config';
|
|
4
4
|
import '@eslint-types/jsdoc/types';
|
package/dist/configs/test.d.cts
CHANGED
package/dist/configs/test.d.ts
CHANGED
package/dist/configs/toml.d.cts
CHANGED
package/dist/configs/toml.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@typescript-eslint/parser';
|
|
2
|
-
export { T as TypeScriptOptions, t as typescript } from '../types-
|
|
2
|
+
export { T as TypeScriptOptions, t as typescript } from '../types-A-NO9UF1.cjs';
|
|
3
3
|
import 'eslint-config-flat-gitignore';
|
|
4
4
|
import '@antfu/eslint-define-config';
|
|
5
5
|
import '@eslint-types/jsdoc/types';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '@typescript-eslint/parser';
|
|
2
|
-
export { T as TypeScriptOptions, t as typescript } from '../types-
|
|
2
|
+
export { T as TypeScriptOptions, t as typescript } from '../types-A-NO9UF1.js';
|
|
3
3
|
import 'eslint-config-flat-gitignore';
|
|
4
4
|
import '@antfu/eslint-define-config';
|
|
5
5
|
import '@eslint-types/jsdoc/types';
|
package/dist/configs/unocss.d.ts
CHANGED
package/dist/configs/vue.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import 'eslint-processor-vue-blocks';
|
|
2
|
-
export { V as VueOptions, v as vue } from '../types-
|
|
2
|
+
export { V as VueOptions, v as vue } from '../types-A-NO9UF1.cjs';
|
|
3
3
|
import 'eslint-config-flat-gitignore';
|
|
4
4
|
import '@antfu/eslint-define-config';
|
|
5
5
|
import '@eslint-types/jsdoc/types';
|
package/dist/configs/vue.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import 'eslint-processor-vue-blocks';
|
|
2
|
-
export { V as VueOptions, v as vue } from '../types-
|
|
2
|
+
export { V as VueOptions, v as vue } from '../types-A-NO9UF1.js';
|
|
3
3
|
import 'eslint-config-flat-gitignore';
|
|
4
4
|
import '@antfu/eslint-define-config';
|
|
5
5
|
import '@eslint-types/jsdoc/types';
|
package/dist/configs/yaml.d.cts
CHANGED
package/dist/configs/yaml.d.ts
CHANGED