tk2312-web/.vscode/settings.json

38 lines
1.0 KiB
JSON
Raw Normal View History

2025-03-09 11:34:19 +08:00
{
"editor.insertSpaces": false,
"files.exclude": {
".git": true,
"build": true,
"dist": false
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"build/**": true,
"dist/**": true,
"i18n/**": true,
"extensions/**/out/**": true
},
"npm.exclude": "**/extensions/**",
"npm.packageManager": "npm",
"typescript.preferences.quoteStyle": "single",
"editor.quickSuggestions": {
"other": "inline",
"comments": "inline",
"strings": "inline"
},
"git.repositoryScanMaxDepth": 3,
"git.autofetch": true,
// 仅格式化修改行通过git对比
"editor.formatOnSaveMode": "modificationsIfAvailable",
// 收起虚拟文件夹
"explorer.fileNesting.expand": false,
"explorer.fileNesting.enabled": false,
"explorer.fileNesting.patterns": {
"README.md": ".editorconfig,.git*,.*rc,LICENSE,CHANGELOG.md,postcss*,*.sh,.*,envvars"
},
// 文件分隔符
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?,。?:;“”【】!",
"editor.lightbulb.enabled": "on",
}