Description
🚧
Check for duplicates
- I have searched for similar issues before opening a new one.
Description
If you change files when working on Windows, you will end up checking in files with Windows-style CRLF line endings, but the library should use Linux-style LF endings.
To rectify this, we should add a .gitattributes
file with the following content:
* text=auto
This will have Git automatically convert the line endings in any text-based file (so not binary files like images) to LF when checking them out, but allow you to use CRLF endings on your local copy if you're using Windows.
h/t this article for the info