vscode中使用vetur、eslint、prettier格式化vue项目代码
文档vetur
·
文档
vetur
js-beautify-html
GitHub
官网
下图是vetur里面的 js-beautify-html
在vscode中,setting.json中的配置情况
应用
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
//属性强制折行对齐,可以是这些值Wrap attributes to new lines [auto|force|force-aligned|force-expand-multiline] ["auto"],默认为auto
// 1.force-aligned 启用后.vue文件中templeate部分代码中的属性会被强制换行,但是闭合的标签却与最后一个属性在同一行,没有换
//"wrap_attributes": "force-aligned"
"wrap_line_length": 120,//一行的长度超过120,在换行
"wrap_attributes": "auto",
"end_with_newline": false
}
},
更多推荐
已为社区贡献31条内容
所有评论(0)