Files
vue-ts-example/.vscode/settings.json
严浩 243b2bbd6b
Some checks failed
/ build-and-deploy-to-vercel (push) Successful in 2m55s
/ playwright (push) Failing after 1m49s
/ cleanup_surge (push) Has been skipped
/ surge (push) Successful in 2m50s
/ lint-build-and-check (push) Successful in 6m7s
fix: 移除不必要的 source.fixAll 配置
2025-05-08 14:07:40 +08:00

36 lines
1.1 KiB
JSON

{
// "editor.formatOnSaveMode": "modificationsIfAvailable", // 只格式化修改的部分
"editor.formatOnSaveMode": "file", // 格式化整个文件
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[less]": {
"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",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit",
"source.fixAll.oxc": "explicit",
"source.organizeImports": "never"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "never",
"source.fixAll.stylelint": "never",
"source.fixAll.oxc": "never",
"source.organizeImports": "never"
},
"editor.formatOnSave": false,
"oxc.enable": true,
"eslint.enable": true
}