@tb-dev/eslint-config 5.7.1 → 5.7.2
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/dist/index.cjs +5 -3
- package/dist/index.js +5 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -292,7 +292,10 @@ async function svelte(options) {
|
|
|
292
292
|
...options.overrides?.svelte
|
|
293
293
|
};
|
|
294
294
|
return [
|
|
295
|
-
{
|
|
295
|
+
{
|
|
296
|
+
plugins: { svelte: sveltePlugin },
|
|
297
|
+
rules
|
|
298
|
+
},
|
|
296
299
|
{
|
|
297
300
|
files: [Glob.Svelte],
|
|
298
301
|
languageOptions: {
|
|
@@ -303,8 +306,7 @@ async function svelte(options) {
|
|
|
303
306
|
extraFileExtensions: [".svelte"]
|
|
304
307
|
}
|
|
305
308
|
}
|
|
306
|
-
}
|
|
307
|
-
{ rules }
|
|
309
|
+
}
|
|
308
310
|
];
|
|
309
311
|
}
|
|
310
312
|
|
package/dist/index.js
CHANGED
|
@@ -288,7 +288,10 @@ async function svelte(options) {
|
|
|
288
288
|
...options.overrides?.svelte
|
|
289
289
|
};
|
|
290
290
|
return [
|
|
291
|
-
{
|
|
291
|
+
{
|
|
292
|
+
plugins: { svelte: sveltePlugin },
|
|
293
|
+
rules
|
|
294
|
+
},
|
|
292
295
|
{
|
|
293
296
|
files: [Glob.Svelte],
|
|
294
297
|
languageOptions: {
|
|
@@ -299,8 +302,7 @@ async function svelte(options) {
|
|
|
299
302
|
extraFileExtensions: [".svelte"]
|
|
300
303
|
}
|
|
301
304
|
}
|
|
302
|
-
}
|
|
303
|
-
{ rules }
|
|
305
|
+
}
|
|
304
306
|
];
|
|
305
307
|
}
|
|
306
308
|
|