【编程开发工具】vscode setting怎么改
2019-11-15开发工具搜奇网45°c
A+ A-vscode setting怎么改?
vscode中setting.json设置
{ // tab 大小为2个空格 "editor.tabSize": 2, // 编辑器换行 "editor.wordWrap": "off", // 保留时格式化 "editor.formatOnSave": true, // 开启 vscode 文件途径导航 "breadcrumbs.enabled": true, // prettier 设置语句末端不加分号 "prettier.semi": false, // prettier 设置强迫单引号 "prettier.singleQuote": true, // 挑选 vue 文件中 template 的格式化东西 "vetur.format.defaultFormatter.html": "js-beautify-html", // vetur 的自定义设置 "vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "aligned-multiple" }, "prettier": { "singleQuote": true, "semi": false, "printWidth": 100, "wrapAttributes": false, "sortAttributes": false } } }
引荐教程:vscode教程
以上就是vscode setting怎么改的细致内容,更多请关注ki4网别的相干文章!
标签:vscode