新项目, antd6, react19
This commit is contained in:
53
.vscode/settings.json
vendored
Normal file
53
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"window.title": "免费ERP后台系统${separator}${rootName}${separator}${profileName}",
|
||||
"editor.formatOnSave": true, // 确保保存文件时自动格式化
|
||||
"files.eol": "\r\n",
|
||||
"files.insertFinalNewline": true, // 保存时自动添加换行符
|
||||
"files.trimTrailingWhitespace": true, // 保存时自动删除行尾空格
|
||||
"editor.rulers": [120],
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports.biome": "explicit",
|
||||
"source.fixAll.biome": "explicit",
|
||||
"source.removeUnusedImports": "explicit"
|
||||
// 移除未使用的代码
|
||||
// "source.removeUnused": "explicit",
|
||||
},
|
||||
"auto-close-tag.enableAutoCloseTag": true,
|
||||
"[typescriptreact]": {
|
||||
"editor.defaultFormatter": "biomejs.biome",
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports": "never"
|
||||
}
|
||||
},
|
||||
"[typescript]": {
|
||||
"editor.defaultFormatter": "biomejs.biome",
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports": "never"
|
||||
}
|
||||
},
|
||||
"[css]": {
|
||||
"editor.defaultFormatter": "biomejs.biome"
|
||||
},
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "biomejs.biome"
|
||||
},
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
},
|
||||
// 配置@的路径提示
|
||||
"path-autocomplete.pathMappings": {
|
||||
"@": "${folder}/src"
|
||||
},
|
||||
// "editor.codeActionsOnSave": {
|
||||
// "source.organizeImports": "explicit"
|
||||
// },
|
||||
"search.exclude": {
|
||||
"**/node_modules": true,
|
||||
"**/dist": true,
|
||||
"**/README.md": true,
|
||||
"**/stats.html": true,
|
||||
"**/pnpm-lock.yaml": true,
|
||||
"**/.cfg.ts": true
|
||||
},
|
||||
"cSpell.words": ["freeerp", "NUMS", "Popconfirm", "qrcode", "Sider", "valtio"]
|
||||
}
|
||||
Reference in New Issue
Block a user