.editorconfig file does not fix file ending issues in Visual Studio

255 views Asked by At

I'm doing a project with a few other people and we have defined a .editorconfig file

# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

Even so I keep getting the message that line endings are not consistent. Why is this happening? Why isn't the .editorconfig file fixing the issue? Shouldn't that file make people automatically save files in the correct way?

0

There are 0 answers