Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(vue): downgrade @vue/eslint-config-prettier to work with prettier v2 #19741

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ exports[`lib should add correct jest.config.ts and dependencies to package.json
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-vue": "^4.3.1",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-prettier": "7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
Expand Down Expand Up @@ -249,7 +249,7 @@ exports[`lib should add vue, vite and vitest to package.json 1`] = `
"@vitejs/plugin-vue": "^4.3.1",
"@vitest/coverage-c8": "~0.32.0",
"@vitest/ui": "~0.32.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-prettier": "7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/src/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const vitePluginVueVersion = '^4.3.1';
export const vueJest3Version = '^29.2.6';

// linting deps
export const vueEslintConfigPrettierVersion = '^8.0.0';
export const vueEslintConfigPrettierVersion = '7.1.0';
export const vueEslintConfigTypescriptVersion = '^11.0.3';
export const eslintPluginVueVersion = '^9.16.1';

Expand Down