vscode 用户配置
{"editor.fontSize": 18,"files.autoSave": "afterDelay", //失去焦点自动保存"workbench.startupEditor": "welcomePage","editor.quickSuggestions": {"strings": true},// vue设置...
·
{
"editor.fontSize": 18,
"files.autoSave": "afterDelay", //失去焦点自动保存
"workbench.startupEditor": "welcomePage",
"editor.quickSuggestions": {
"strings": true
},
// vue设置
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"files.associations": {
"*.vue": "vue"
},
// vetur设置
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatter.js": "vscode-typescript",
// format设置
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"editor.formatOnSave": true,
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"workbench.colorTheme": "Visual Studio Dark",
"editor.detectIndentation": false,
/** Easy Sass 插件 **/
"easysass.formats": [
{
"format": "compressed", // 压缩
"extension": ".css"
}
],
"easysass.targetDir": "./css/" // 自定义css输出文件路径
}
在应用商店安装easysass插件
更多推荐
已为社区贡献1条内容
所有评论(0)