@ghettoddos/eslint-config 3.0.0 → 3.0.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/index.js +5 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1894,6 +1894,11 @@ async function vue(options = {}) {
|
|
|
1894
1894
|
const { a11y = false, files = [GLOB_VUE], overrides = {}, stylistic: stylistic$1 = true, vueVersion = 3 } = options;
|
|
1895
1895
|
const sfcBlocks = options.sfcBlocks === true ? {} : options.sfcBlocks ?? {};
|
|
1896
1896
|
const { indent = 2 } = typeof stylistic$1 === "boolean" ? {} : stylistic$1;
|
|
1897
|
+
await ensurePackages([
|
|
1898
|
+
"eslint-plugin-vue",
|
|
1899
|
+
"vue-eslint-parser",
|
|
1900
|
+
"eslint-processor-vue-blocks"
|
|
1901
|
+
]);
|
|
1897
1902
|
if (a11y) await ensurePackages(["eslint-plugin-vuejs-accessibility"]);
|
|
1898
1903
|
const [pluginVue, parserVue, processorVueBlocks, pluginVueA11y] = await Promise.all([
|
|
1899
1904
|
interopDefault(import("eslint-plugin-vue")),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghettoddos/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"description": "ghettoDdOS ESLint config",
|
|
6
6
|
"author": "ghettoDdOS <pen.egor2002@gamil.com> (https://github.com/ghettoDdOS/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"vitest": "^4.0.15",
|
|
158
158
|
"vue": "^3.5.25",
|
|
159
159
|
"vue-eslint-parser": "^10.2.0",
|
|
160
|
-
"@ghettoddos/eslint-config": "3.0.
|
|
160
|
+
"@ghettoddos/eslint-config": "3.0.1"
|
|
161
161
|
},
|
|
162
162
|
"resolutions": {
|
|
163
163
|
"eslint": "catalog:peer"
|