Windows-style line ending all over the place
bluca opened this issue · 0 comments
bluca commented
The diff between 0.3.1 and 1.0.0 contains a lot of Windows-style line endings (CRLF) in many places.
Please consider enforcing LF-only line endings, eg, add a .gitattributes
with:
* text=auto eol=lf
Developers on Windows who still need CRLF line endings can get them added automatically, and removed on commit, transparently for all repositories, by setting:
git config --global core.autocrlf true