@coderwyd/eslint-config 4.11.0 → 4.11.1
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/cli.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import prompts from "prompts";
|
|
|
9
9
|
import { execSync } from "node:child_process";
|
|
10
10
|
|
|
11
11
|
//#region package.json
|
|
12
|
-
var version = "4.11.
|
|
12
|
+
var version = "4.11.1";
|
|
13
13
|
var devDependencies = {
|
|
14
14
|
"@eslint-react/eslint-plugin": "catalog:peer",
|
|
15
15
|
"@eslint/config-inspector": "catalog:dev",
|
package/dist/index.mjs
CHANGED
|
@@ -1600,7 +1600,7 @@ async function unocss(options = {}) {
|
|
|
1600
1600
|
//#endregion
|
|
1601
1601
|
//#region src/configs/vue.ts
|
|
1602
1602
|
async function vue(options = {}) {
|
|
1603
|
-
const { files = [GLOB_VUE], overrides = {}, vueVersion } = options;
|
|
1603
|
+
const { files = [GLOB_VUE], overrides = {}, vueVersion = 3 } = options;
|
|
1604
1604
|
const [pluginVue, parserVue] = await Promise.all([interopDefault(import("eslint-plugin-vue")), interopDefault(import("vue-eslint-parser"))]);
|
|
1605
1605
|
const isVue3 = vueVersion === 3;
|
|
1606
1606
|
const configKeys = isVue3 ? [
|