每次我和我的同事保存一些文件时,prettier 的行为都会有所不同并更改整个文件。它使 git 无用,因为我们都需要处理文件的任何更改,git 的 diff 函数显示整个文件已更改。
我们尝试为两个 IDE 设置 .vscode/.editorconfig
root = true
[*]
indent_style = tab
indent_size = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
quote_type = double
spaces_around_operators = true
spaces_around_brackets = outside
我们尝试使用以下配置将 .prettierrc.json 文件添加到根项目文件夹
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": false
}
然而,只要我们每个人都保存一个文件(使用对方的格式),整个文件就会被更改。
我错过了什么?
谢谢!