vs code格式化vue代码的缩进问题
先贴上设置
{
"window.zoomLevel": 1,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html"
},
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "aligned-multiple"
}
},
"editor.detectIndentation": false,
"editor.tabSize": 4,
"prettier.tabWidth": 4,
"vetur.format.defaultFormatter.js": "prettier",
"eslint.autoFixOnSave": true,
"prettier.singleQuote": true,
"editor.formatOnSave": true,
"prettier.trailingComma": "all",
"workbench.colorTheme": "Palenight Theme",
"git.autofetch": true,
"editor.lineHeight": 30
};
这三句设置设置位4个空格缩进
"editor.detectIndentation": false,
"editor.tabSize": 4,
"prettier.tabWidth": 4,
但是格式化出来的代码还是两个空格的缩进
这是我安装的插件
请问这是怎么回事呢,为什么代码不能以4个空格进行格式化代码呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
设置后重启试一下
你先去看看eslint中是不也是2,这个我之前遇到过。如果这个是4,那么缩进就是4