@luxass/eslint-config 4.1.0 → 4.2.0-beta.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
package/README.md
CHANGED
|
@@ -3,9 +3,6 @@
|
|
|
3
3
|
[![npm version][npm-version-src]][npm-version-href]
|
|
4
4
|
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
5
5
|
|
|
6
|
-
> [!IMPORTANT]
|
|
7
|
-
> The configuration is not currently finished, it could change at any moment.
|
|
8
|
-
|
|
9
6
|
## ✨ Features
|
|
10
7
|
|
|
11
8
|
- Based on [Antfu's ESLint Config](https://github.com/antfu/eslint-config)
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ensure,
|
|
3
|
+
interop
|
|
4
|
+
} from "./chunk-4YBQZLPS.mjs";
|
|
5
|
+
import {
|
|
6
|
+
GLOB_JSX,
|
|
7
|
+
GLOB_TSX
|
|
8
|
+
} from "./chunk-ATRL3UZP.mjs";
|
|
9
|
+
|
|
10
|
+
// src/configs/solid.ts
|
|
11
|
+
async function solid(options = {}) {
|
|
12
|
+
const {
|
|
13
|
+
a11y = false,
|
|
14
|
+
files = [GLOB_JSX, GLOB_TSX],
|
|
15
|
+
overrides = {},
|
|
16
|
+
typescript = true
|
|
17
|
+
} = options;
|
|
18
|
+
await ensure([
|
|
19
|
+
"eslint-plugin-solid"
|
|
20
|
+
]);
|
|
21
|
+
const [
|
|
22
|
+
pluginSolid
|
|
23
|
+
] = await Promise.all([
|
|
24
|
+
interop(import("eslint-plugin-solid"))
|
|
25
|
+
]);
|
|
26
|
+
return [
|
|
27
|
+
{
|
|
28
|
+
name: "luxass:solid:setup",
|
|
29
|
+
plugins: {
|
|
30
|
+
solid: pluginSolid
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
name: "luxass:solid:rules",
|
|
35
|
+
files,
|
|
36
|
+
languageOptions: {
|
|
37
|
+
parserOptions: {
|
|
38
|
+
ecmaFeatures: {
|
|
39
|
+
jsx: true
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
sourceType: "module"
|
|
43
|
+
},
|
|
44
|
+
rules: {
|
|
45
|
+
...a11y ? {
|
|
46
|
+
// recommended rules for jsx-a11y
|
|
47
|
+
"jsx-a11y/alt-text": "error",
|
|
48
|
+
"jsx-a11y/anchor-ambiguous-text": "off",
|
|
49
|
+
"jsx-a11y/anchor-has-content": "error",
|
|
50
|
+
"jsx-a11y/anchor-is-valid": "error",
|
|
51
|
+
"jsx-a11y/aria-activedescendant-has-tabindex": "error",
|
|
52
|
+
"jsx-a11y/aria-props": "error",
|
|
53
|
+
"jsx-a11y/aria-proptypes": "error",
|
|
54
|
+
"jsx-a11y/aria-role": "error",
|
|
55
|
+
"jsx-a11y/aria-unsupported-elements": "error",
|
|
56
|
+
"jsx-a11y/autocomplete-valid": "error",
|
|
57
|
+
"jsx-a11y/click-events-have-key-events": "error",
|
|
58
|
+
"jsx-a11y/control-has-associated-label": [
|
|
59
|
+
"off",
|
|
60
|
+
{
|
|
61
|
+
ignoreElements: [
|
|
62
|
+
"audio",
|
|
63
|
+
"canvas",
|
|
64
|
+
"embed",
|
|
65
|
+
"input",
|
|
66
|
+
"textarea",
|
|
67
|
+
"tr",
|
|
68
|
+
"video"
|
|
69
|
+
],
|
|
70
|
+
ignoreRoles: [
|
|
71
|
+
"grid",
|
|
72
|
+
"listbox",
|
|
73
|
+
"menu",
|
|
74
|
+
"menubar",
|
|
75
|
+
"radiogroup",
|
|
76
|
+
"row",
|
|
77
|
+
"tablist",
|
|
78
|
+
"toolbar",
|
|
79
|
+
"tree",
|
|
80
|
+
"treegrid"
|
|
81
|
+
],
|
|
82
|
+
includeRoles: [
|
|
83
|
+
"alert",
|
|
84
|
+
"dialog"
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"jsx-a11y/heading-has-content": "error",
|
|
89
|
+
"jsx-a11y/html-has-lang": "error",
|
|
90
|
+
"jsx-a11y/iframe-has-title": "error",
|
|
91
|
+
"jsx-a11y/img-redundant-alt": "error",
|
|
92
|
+
"jsx-a11y/interactive-supports-focus": [
|
|
93
|
+
"error",
|
|
94
|
+
{
|
|
95
|
+
tabbable: [
|
|
96
|
+
"button",
|
|
97
|
+
"checkbox",
|
|
98
|
+
"link",
|
|
99
|
+
"searchbox",
|
|
100
|
+
"spinbutton",
|
|
101
|
+
"switch",
|
|
102
|
+
"textbox"
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"jsx-a11y/label-has-associated-control": "error",
|
|
107
|
+
"jsx-a11y/label-has-for": "off",
|
|
108
|
+
"jsx-a11y/media-has-caption": "error",
|
|
109
|
+
"jsx-a11y/mouse-events-have-key-events": "error",
|
|
110
|
+
"jsx-a11y/no-access-key": "error",
|
|
111
|
+
"jsx-a11y/no-autofocus": "error",
|
|
112
|
+
"jsx-a11y/no-distracting-elements": "error",
|
|
113
|
+
"jsx-a11y/no-interactive-element-to-noninteractive-role": [
|
|
114
|
+
"error",
|
|
115
|
+
{
|
|
116
|
+
canvas: [
|
|
117
|
+
"img"
|
|
118
|
+
],
|
|
119
|
+
tr: [
|
|
120
|
+
"none",
|
|
121
|
+
"presentation"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"jsx-a11y/no-noninteractive-element-interactions": [
|
|
126
|
+
"error",
|
|
127
|
+
{
|
|
128
|
+
alert: [
|
|
129
|
+
"onKeyUp",
|
|
130
|
+
"onKeyDown",
|
|
131
|
+
"onKeyPress"
|
|
132
|
+
],
|
|
133
|
+
body: [
|
|
134
|
+
"onError",
|
|
135
|
+
"onLoad"
|
|
136
|
+
],
|
|
137
|
+
dialog: [
|
|
138
|
+
"onKeyUp",
|
|
139
|
+
"onKeyDown",
|
|
140
|
+
"onKeyPress"
|
|
141
|
+
],
|
|
142
|
+
handlers: [
|
|
143
|
+
"onClick",
|
|
144
|
+
"onError",
|
|
145
|
+
"onLoad",
|
|
146
|
+
"onMouseDown",
|
|
147
|
+
"onMouseUp",
|
|
148
|
+
"onKeyPress",
|
|
149
|
+
"onKeyDown",
|
|
150
|
+
"onKeyUp"
|
|
151
|
+
],
|
|
152
|
+
iframe: [
|
|
153
|
+
"onError",
|
|
154
|
+
"onLoad"
|
|
155
|
+
],
|
|
156
|
+
img: [
|
|
157
|
+
"onError",
|
|
158
|
+
"onLoad"
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"jsx-a11y/no-noninteractive-element-to-interactive-role": [
|
|
163
|
+
"error",
|
|
164
|
+
{
|
|
165
|
+
fieldset: [
|
|
166
|
+
"radiogroup",
|
|
167
|
+
"presentation"
|
|
168
|
+
],
|
|
169
|
+
li: [
|
|
170
|
+
"menuitem",
|
|
171
|
+
"option",
|
|
172
|
+
"row",
|
|
173
|
+
"tab",
|
|
174
|
+
"treeitem"
|
|
175
|
+
],
|
|
176
|
+
ol: [
|
|
177
|
+
"listbox",
|
|
178
|
+
"menu",
|
|
179
|
+
"menubar",
|
|
180
|
+
"radiogroup",
|
|
181
|
+
"tablist",
|
|
182
|
+
"tree",
|
|
183
|
+
"treegrid"
|
|
184
|
+
],
|
|
185
|
+
table: [
|
|
186
|
+
"grid"
|
|
187
|
+
],
|
|
188
|
+
td: [
|
|
189
|
+
"gridcell"
|
|
190
|
+
],
|
|
191
|
+
ul: [
|
|
192
|
+
"listbox",
|
|
193
|
+
"menu",
|
|
194
|
+
"menubar",
|
|
195
|
+
"radiogroup",
|
|
196
|
+
"tablist",
|
|
197
|
+
"tree",
|
|
198
|
+
"treegrid"
|
|
199
|
+
]
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"jsx-a11y/no-noninteractive-tabindex": [
|
|
203
|
+
"error",
|
|
204
|
+
{
|
|
205
|
+
allowExpressionValues: true,
|
|
206
|
+
roles: [
|
|
207
|
+
"tabpanel"
|
|
208
|
+
],
|
|
209
|
+
tags: []
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"jsx-a11y/no-redundant-roles": "error",
|
|
213
|
+
"jsx-a11y/no-static-element-interactions": [
|
|
214
|
+
"error",
|
|
215
|
+
{
|
|
216
|
+
allowExpressionValues: true,
|
|
217
|
+
handlers: [
|
|
218
|
+
"onClick",
|
|
219
|
+
"onMouseDown",
|
|
220
|
+
"onMouseUp",
|
|
221
|
+
"onKeyPress",
|
|
222
|
+
"onKeyDown",
|
|
223
|
+
"onKeyUp"
|
|
224
|
+
]
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"jsx-a11y/role-has-required-aria-props": "error",
|
|
228
|
+
"jsx-a11y/role-supports-aria-props": "error",
|
|
229
|
+
"jsx-a11y/scope": "error",
|
|
230
|
+
"jsx-a11y/tabindex-no-positive": "error"
|
|
231
|
+
} : {},
|
|
232
|
+
// solid recommended rules
|
|
233
|
+
// reactivity
|
|
234
|
+
"solid/components-return-once": 1,
|
|
235
|
+
"solid/event-handlers": 1,
|
|
236
|
+
// these rules are mostly style suggestions
|
|
237
|
+
"solid/imports": 1,
|
|
238
|
+
// identifier usage is important
|
|
239
|
+
"solid/jsx-no-duplicate-props": 2,
|
|
240
|
+
"solid/jsx-no-script-url": 2,
|
|
241
|
+
"solid/jsx-no-undef": 2,
|
|
242
|
+
"solid/jsx-uses-vars": 2,
|
|
243
|
+
"solid/no-array-handlers": 0,
|
|
244
|
+
"solid/no-destructure": 2,
|
|
245
|
+
// security problems
|
|
246
|
+
"solid/no-innerhtml": 2,
|
|
247
|
+
// only necessary for resource-constrained environments
|
|
248
|
+
"solid/no-proxy-apis": 0,
|
|
249
|
+
"solid/no-react-deps": 1,
|
|
250
|
+
"solid/no-react-specific-props": 1,
|
|
251
|
+
"solid/no-unknown-namespaces": 2,
|
|
252
|
+
// deprecated
|
|
253
|
+
"solid/prefer-classlist": 0,
|
|
254
|
+
"solid/prefer-for": 2,
|
|
255
|
+
// handled by Solid compiler, opt-in style suggestion
|
|
256
|
+
"solid/prefer-show": 0,
|
|
257
|
+
"solid/reactivity": 1,
|
|
258
|
+
"solid/self-closing-comp": 1,
|
|
259
|
+
"solid/style-prop": 1,
|
|
260
|
+
...typescript ? {
|
|
261
|
+
"solid/jsx-no-undef": [2, { typescriptEnabled: true }],
|
|
262
|
+
// namespaces taken care of by TS
|
|
263
|
+
"solid/no-unknown-namespaces": 0
|
|
264
|
+
} : {},
|
|
265
|
+
// overrides
|
|
266
|
+
...overrides
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
];
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export {
|
|
273
|
+
solid
|
|
274
|
+
};
|
package/dist/configs/astro.d.cts
CHANGED
package/dist/configs/astro.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { F as FormattersOptions, i as formatters } from '../types-
|
|
1
|
+
export { F as FormattersOptions, i as formatters } 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 { F as FormattersOptions, i as formatters } from '../types-
|
|
1
|
+
export { F as FormattersOptions, i as formatters } 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';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as StylisticConfig, k as FlatConfigItem } from '../types-
|
|
1
|
+
import { S as StylisticConfig, k as FlatConfigItem } 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
|
-
import { S as StylisticConfig, k as FlatConfigItem } from '../types-
|
|
1
|
+
import { S as StylisticConfig, k as FlatConfigItem } 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/index.d.cts
CHANGED
|
@@ -5,7 +5,7 @@ export { node } from './node.cjs';
|
|
|
5
5
|
export { sortPackageJson, sortTsconfig } from './sort.cjs';
|
|
6
6
|
export { perfectionist } from './perfectionist.cjs';
|
|
7
7
|
export { ImportsOptions, imports } from './imports.cjs';
|
|
8
|
-
export { A as AstroOptions, F as FormattersOptions, b as JSONOptions, J as JavaScriptOptions, N as NextJSOptions, R as ReactOptions, S as StylisticConfig, c as StylisticOptions, h as TailwindCSSOptions, e as TestOptions, T as TypeScriptOptions, U as UnoCSSOptions, V as VueOptions, Y as YAMLOptions, f as astro, i as formatters, j as javascript, a as jsonc, n as nextjs, r as react, s as stylistic, g as tailwindcss, d as test, t as typescript, u as unocss, v as vue, y as yaml } from '../types-
|
|
8
|
+
export { A as AstroOptions, F as FormattersOptions, b as JSONOptions, J as JavaScriptOptions, N as NextJSOptions, R as ReactOptions, S as StylisticConfig, c as StylisticOptions, h as TailwindCSSOptions, e as TestOptions, T as TypeScriptOptions, U as UnoCSSOptions, V as VueOptions, Y as YAMLOptions, f as astro, i as formatters, j as javascript, a as jsonc, n as nextjs, r as react, s as stylistic, g as tailwindcss, d as test, t as typescript, u as unocss, v as vue, y as yaml } from '../types-A-NO9UF1.cjs';
|
|
9
9
|
export { JSDOCOptions, jsdoc } from './jsdoc.cjs';
|
|
10
10
|
export { MarkdownOptions, markdown } from './markdown.cjs';
|
|
11
11
|
import 'eslint-config-flat-gitignore';
|
package/dist/configs/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { node } from './node.js';
|
|
|
5
5
|
export { sortPackageJson, sortTsconfig } from './sort.js';
|
|
6
6
|
export { perfectionist } from './perfectionist.js';
|
|
7
7
|
export { ImportsOptions, imports } from './imports.js';
|
|
8
|
-
export { A as AstroOptions, F as FormattersOptions, b as JSONOptions, J as JavaScriptOptions, N as NextJSOptions, R as ReactOptions, S as StylisticConfig, c as StylisticOptions, h as TailwindCSSOptions, e as TestOptions, T as TypeScriptOptions, U as UnoCSSOptions, V as VueOptions, Y as YAMLOptions, f as astro, i as formatters, j as javascript, a as jsonc, n as nextjs, r as react, s as stylistic, g as tailwindcss, d as test, t as typescript, u as unocss, v as vue, y as yaml } from '../types-
|
|
8
|
+
export { A as AstroOptions, F as FormattersOptions, b as JSONOptions, J as JavaScriptOptions, N as NextJSOptions, R as ReactOptions, S as StylisticConfig, c as StylisticOptions, h as TailwindCSSOptions, e as TestOptions, T as TypeScriptOptions, U as UnoCSSOptions, V as VueOptions, Y as YAMLOptions, f as astro, i as formatters, j as javascript, a as jsonc, n as nextjs, r as react, s as stylistic, g as tailwindcss, d as test, t as typescript, u as unocss, v as vue, y as yaml } from '../types-A-NO9UF1.js';
|
|
9
9
|
export { JSDOCOptions, jsdoc } from './jsdoc.js';
|
|
10
10
|
export { MarkdownOptions, markdown } from './markdown.js';
|
|
11
11
|
import 'eslint-config-flat-gitignore';
|
package/dist/configs/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import "../chunk-ME2OAMS3.mjs";
|
|
2
|
+
import {
|
|
3
|
+
unocss
|
|
4
|
+
} from "../chunk-KJ7ZCBK4.mjs";
|
|
2
5
|
import {
|
|
3
6
|
vue
|
|
4
7
|
} from "../chunk-C67L5T23.mjs";
|
|
@@ -22,9 +25,6 @@ import {
|
|
|
22
25
|
import {
|
|
23
26
|
unicorn
|
|
24
27
|
} from "../chunk-RVSUTDCE.mjs";
|
|
25
|
-
import {
|
|
26
|
-
unocss
|
|
27
|
-
} from "../chunk-KJ7ZCBK4.mjs";
|
|
28
28
|
import {
|
|
29
29
|
javascript
|
|
30
30
|
} from "../chunk-K6TLNQJF.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { J as JavaScriptOptions, j as javascript } from '../types-
|
|
1
|
+
export { J as JavaScriptOptions, j as javascript } 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 { J as JavaScriptOptions, j as javascript } from '../types-
|
|
1
|
+
export { J as JavaScriptOptions, j as javascript } 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/jsdoc.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as StylisticConfig, k as FlatConfigItem } from '../types-
|
|
1
|
+
import { S as StylisticConfig, k as FlatConfigItem } 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';
|
package/dist/configs/jsdoc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as StylisticConfig, k as FlatConfigItem } from '../types-
|
|
1
|
+
import { S as StylisticConfig, k as FlatConfigItem } 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/jsonc.d.cts
CHANGED
package/dist/configs/jsonc.d.ts
CHANGED
package/dist/configs/nextjs.d.ts
CHANGED
package/dist/configs/node.d.cts
CHANGED
package/dist/configs/node.d.ts
CHANGED
package/dist/configs/react.d.cts
CHANGED
package/dist/configs/react.d.ts
CHANGED