如何阻止Prettier使用旧的自关闭标记语法



所以我最近安装了更漂亮的,每当我保存文件时,它都会在一个自关闭标记中添加正斜杠。我想知道如何阻止它这样做?

我的意思是:-

<!-- Instead of this ↓ -->
<input type="text">
<!-- It does this ↓ -->
<input type="text" />

提前感谢

由于Prettier的理念,它无法更改,请参阅:https://github.com/prettier/prettier/issues/5641

但是您可以通过添加设置将HTML文件的格式从Prettier更改为VS Code的格式化程序:

"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},

像这样回答:https://stackoverflow.com/a/66646608/3248254

它与liveserver的工作方式类似。但当ı运行npx prettier --write .时。全部关闭";输入";以及";img";标签。

{ 
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"liveServer.settings.port": 5539,
"liveServer.settings.root": "/public/", 
} 

相关内容

  • 没有找到相关文章

最新更新