如何将VSCode的settings配置调整为更高效的工作环境?
- 内容介绍
- 文章标签
- 相关推荐
本文共计98个文字,预计阅读时间需要1分钟。
在VSCode中,以下是对您提供的设置内容的简化:
json{ workbench.iconTheme: vscode-icons, editor.formatOnSave: true, css.validate: false, files.autoSave: off, files.exclude: {node_modules: true}, files.watcherExclude: {node_modules: true}}
{ "workbench.iconTheme": "vscode-icons", "editor.formatOnSave": true, "css.validate": false, "files.autoSave": "off", "files.exclude": { "node_modules": true }, "files.watcherExclude": { "node_modules": true }, "search.exclude": { "node_modules": true }, "eslint.validate": [ "javascript", "javascriptreact", "html", { "language": "vue", "autoFix": true } ], "eslint.options": { "plugins": ["html"] }, "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe" }
本文共计98个文字,预计阅读时间需要1分钟。
在VSCode中,以下是对您提供的设置内容的简化:
json{ workbench.iconTheme: vscode-icons, editor.formatOnSave: true, css.validate: false, files.autoSave: off, files.exclude: {node_modules: true}, files.watcherExclude: {node_modules: true}}
{ "workbench.iconTheme": "vscode-icons", "editor.formatOnSave": true, "css.validate": false, "files.autoSave": "off", "files.exclude": { "node_modules": true }, "files.watcherExclude": { "node_modules": true }, "search.exclude": { "node_modules": true }, "eslint.validate": [ "javascript", "javascriptreact", "html", { "language": "vue", "autoFix": true } ], "eslint.options": { "plugins": ["html"] }, "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe" }

