英文:
How to remove red margins in VS code?
问题
我在VS code中安装了“prettier”扩展。
并将缩进设置为2个空格。
"prettier.tabWidth": 2,
现在VS code以红色突出显示缩进字段。
VS code希望有4个空格。
如何在VS code中设置2个空格?
或者如何在VS code中去除这个红色突出显示?
英文:
I installed the "prettier" extension in VS code.<br>
With indent settings of 2 spaces.<br>
"prettier.tabWidth": 2,
Now VS code highlights the indentation fields in red.<br>
VS code wants there to be 4 spaces.<br>
How can I set 2 spaces in VS code?<br>
Or how can I remove this red highlight in VS code?<br>
答案1
得分: 0
我找到了解决方案!
这是我的settings.json文件:
// 缩进距离
"prettier.tabWidth": 2,
// 一个制表符对应的空格数
"editor.tabSize": 2,
// 按下TAB键时插入空格。如果启用了"editor.detectIndentation"设置,此设置将根据文件内容进行覆盖。
"editor.insertSpaces": true,
// 基于文件内容,在打开文件时确定是否自动检测"editor.tabSize"和"editor.insertSpaces"。
"editor.detectIndentation": false,
英文:
I found a solution to the problem!<br>
This is my settings.json<br>
// Distance of padding.
"prettier.tabWidth": 2,
// The number of spaces corresponding to a tab.
"editor.tabSize": 2,
// Insert spaces when pressing the TAB key. This setting is overridden based on the content of the file if the "editor.detectIndentation" setting is enabled.
"editor.insertSpaces": true,
// Based on the contents of the file, determines whether "editor.tabSize" and "editor.insertSpaces" are automatically detected when the file is opened.
"editor.detectIndentation": false,
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论