1# See https://git-scm.com/docs/gitattributes 2# See https://help.github.com/articles/dealing-with-line-endings/ 3 4# Default behavior, if core.autocrlf is unset. 5* text=auto 6 7# Files to be converted to native line endings on checkout. 8*.c text 9*.cpp text 10*.h text 11 12# Text files to always have CRLF (dos) line endings on checkout. 13*.bat text eol=crlf 14 15# Text files to always have LF (unix) line endings on checkout. 16*.sh text eol=lf 17 18# Generated source files will always have LF (unix) line endings on checkout. 19loader/generated/*.c text eol=lf 20loader/generated/*.h text eol=lf 21loader/generated/*.cmake text eol=lf 22 23