.gitattributes 549 B

123456789101112131415161718192021
  1. # Properly detect languages on Github
  2. *.h linguist-language=cpp
  3. *.inc linguist-language=cpp
  4. thirdparty/* linguist-vendored
  5. # Normalize EOL for all files that Git considers text files
  6. * text=auto eol=lf
  7. # Except for bat files, which are Windows only files
  8. *.bat eol=crlf
  9. # And some test files where the EOL matters
  10. *.test.txt -text
  11. # The above only works properly for Git 2.10+, so for older versions
  12. # we need to manually list the binary files we don't want modified.
  13. *.icns binary
  14. *.ico binary
  15. *.jar binary
  16. *.png binary
  17. *.ttf binary
  18. *.tza binary