prettierrc vue 不自动加 配置
在 .prettierrc 文件中添加以下配置即可:
{
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"htmlWhitespaceSensitivity": "ignore"
}
其中 "htmlWhitespaceSensitivity": "ignore" 配置可以防止在 vue 文件中自动添加 /。
原文地址: https://www.cveoy.top/t/topic/bgi3 著作权归作者所有。请勿转载和采集!