@@ -57,7 +57,7 @@ exports[`flat config composition > custom src dirs 1`] = `
57
57
" name" : " nuxt/import/rules" ,
58
58
} ,
59
59
{
60
- " name" : " nuxt/configs " ,
60
+ " name" : " nuxt/setup " ,
61
61
} ,
62
62
{
63
63
" files" : [
@@ -148,7 +148,7 @@ exports[`flat config composition > empty 1`] = `
148
148
" name" : " nuxt/import/rules" ,
149
149
} ,
150
150
{
151
- " name" : " nuxt/configs " ,
151
+ " name" : " nuxt/setup " ,
152
152
} ,
153
153
{
154
154
" files" : [
@@ -185,7 +185,7 @@ exports[`flat config composition > empty 1`] = `
185
185
exports [` flat config composition > non-standalone 1` ] = `
186
186
[
187
187
{
188
- " name" : " nuxt/configs " ,
188
+ " name" : " nuxt/setup " ,
189
189
} ,
190
190
{
191
191
" files" : [
@@ -218,3 +218,103 @@ exports[`flat config composition > non-standalone 1`] = `
218
218
} ,
219
219
]
220
220
` ;
221
+
222
+ exports [` flat config composition > with stylistic 1` ] = `
223
+ [
224
+ {
225
+ " ignores" : [
226
+ " **/node_modules" ,
227
+ " **/*.iml" ,
228
+ " **/.idea" ,
229
+ " **/*.log" ,
230
+ " **/.nuxt" ,
231
+ " **/.output" ,
232
+ " **/.yarn/cache" ,
233
+ " **/.yarn/*state*" ,
234
+ " **/dist" ,
235
+ " **/.eslintcache" ,
236
+ ],
237
+ " name" : " gitignore" ,
238
+ } ,
239
+ {
240
+ " ignores" : [
241
+ " **/dist" ,
242
+ " **/node_modules" ,
243
+ " **/.nuxt" ,
244
+ " **/.output" ,
245
+ " **/.vercel" ,
246
+ " **/.netlify" ,
247
+ " **/public" ,
248
+ ],
249
+ } ,
250
+ {
251
+ " name" : " nuxt/javascript" ,
252
+ } ,
253
+ {
254
+ " name" : " nuxt/typescript/setup" ,
255
+ } ,
256
+ {
257
+ " files" : [
258
+ " **/*.ts" ,
259
+ " **/*.tsx" ,
260
+ " **/*.mts" ,
261
+ " **/*.cts" ,
262
+ " **/*.vue" ,
263
+ ],
264
+ " name" : " nuxt/typescript/rules" ,
265
+ } ,
266
+ {
267
+ " name" : " nuxt/vue/setup" ,
268
+ } ,
269
+ {
270
+ " files" : [
271
+ " **/*.vue" ,
272
+ ],
273
+ " name" : " nuxt/vue/rules" ,
274
+ } ,
275
+ {
276
+ " name" : " nuxt/import/rules" ,
277
+ } ,
278
+ {
279
+ " name" : " nuxt/setup" ,
280
+ } ,
281
+ {
282
+ " files" : [
283
+ " app/components/**/*.server.{js,ts,jsx,tsx,vue}" ,
284
+ " app/layouts/**/*.{js,ts,jsx,tsx,vue}" ,
285
+ " app/pages/**/*.{js,ts,jsx,tsx,vue}" ,
286
+ " components/**/*.server.{js,ts,jsx,tsx,vue}" ,
287
+ " layouts/**/*.{js,ts,jsx,tsx,vue}" ,
288
+ " pages/**/*.{js,ts,jsx,tsx,vue}" ,
289
+ ],
290
+ " name" : " nuxt/vue/single-root" ,
291
+ } ,
292
+ {
293
+ " name" : " nuxt/rules" ,
294
+ } ,
295
+ {
296
+ " files" : [
297
+ " **/nuxt.config.?([cm])[jt]s?(x)" ,
298
+ ],
299
+ " name" : " nuxt/sort-config" ,
300
+ } ,
301
+ {
302
+ " name" : " nuxt/stylistic" ,
303
+ } ,
304
+ {
305
+ " files" : [
306
+ " app.{js,ts,jsx,tsx,vue}" ,
307
+ " app/app.{js,ts,jsx,tsx,vue}" ,
308
+ " app/components/*/**/*.{js,ts,jsx,tsx,vue}" ,
309
+ " app/error.{js,ts,jsx,tsx,vue}" ,
310
+ " app/layouts/**/*.{js,ts,jsx,tsx,vue}" ,
311
+ " app/pages/**/*.{js,ts,jsx,tsx,vue}" ,
312
+ " components/*/**/*.{js,ts,jsx,tsx,vue}" ,
313
+ " error.{js,ts,jsx,tsx,vue}" ,
314
+ " layouts/**/*.{js,ts,jsx,tsx,vue}" ,
315
+ " pages/**/*.{js,ts,jsx,tsx,vue}" ,
316
+ ],
317
+ " name" : " nuxt/disables/routes" ,
318
+ } ,
319
+ ]
320
+ ` ;
0 commit comments