Files
vue-ts-example/.vscode/settings.json
严浩 7a682b1ea6
All checks were successful
/ playwright (push) Successful in 1m56s
/ depcheck (push) Successful in 1m27s
/ build-and-deploy-to-vercel (push) Successful in 1m43s
feat: 更新页面模板内容,调整 VSCode 设置,更新依赖管理器版本并添加新脚本
2024-12-25 11:00:19 +08:00

23 lines
753 B
JSON

{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.formatOnSave": true,
// "editor.formatOnSaveMode": "modificationsIfAvailable", // 只格式化修改的部分
"editor.formatOnSaveMode": "file", // 只格式化修改的部分
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.preferences.autoImportFileExcludePatterns": ["vue-router/auto$"],
"i18n-ally.localesPaths": ["src/locales"],
"i18n-ally.keystyle": "nested"
}