bocdaz / template-python-project

A starter project template for new python project.
0 stars 0 forks source link

Ensure line endings remain LF even on Windows #28

Open slougheed opened 2 years ago

slougheed commented 2 years ago

The devspace command and other linux commands will fail if line endings are modified when the code is checked out on Windows. Ensure that LF style line endings remain by adding a gitattributes file.

https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings

We may want to investigate whether we should only force line endings for required files (Dockerfile, devspace*, etc) rather than normalizing line ending for all files.

slougheed commented 2 years ago

This same modification will need to be made for other templates.