为什么在设置了4个空格缩进但还是不管用
先贴上setting文件里面的代码
{
"editor.formatOnSave": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
}
],
"editor.detectIndentation": true,
"vetur.format.defaultFormatter.js": "none",
"workbench.colorTheme": "Palenight Theme",
"window.zoomLevel": 2,
"editor.lineHeight": 30,
"editor.tabSize": 4,
"prettier.tabWidth": 4,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"wrap_attributes": "force-aligned"
}
}
在"editor.tabSize": 4,
"prettier.tabWidth": 4,这两个设置里我都设置的4,但是页面格式化代码的时候还是按照2个空格在缩进,这个问题该怎么解决呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个制表符等于的空格数。在 Editor: Detect Indentation 启用时,根据文件内容,该设置可能会被覆盖。
看一下Detect Indentation是否是on(启用则会检查文件本身的格式),是的话改为off。
刚参考 【VS Code 缩进问题】 https://segmentfault.com/q/10... 解决了
"editor.detectIndentation": false
"editor.tabSize": 4,
改完,重启vscode可以了。你可以试试