prettierrc html 不自动加 配置
您可以在.prettierrc文件中添加以下配置来禁用HTML自动添加斜杠:
{
"overrides": [
{
"files": "*.html",
"options": {
"htmlWhitespaceSensitivity": "ignore"
}
}
]
}
这将禁用HTML敏感性检查,包括自动添加斜杠。
原文地址: https://www.cveoy.top/t/topic/bgiH 著作权归作者所有。请勿转载和采集!