.gitattributes 475 B

123456789101112131415161718
  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. # The above only works properly for Git 2.10+, so for older versions
  10. # we need to manually list the binary files we don't want modified.
  11. *.icns binary
  12. *.ico binary
  13. *.jar binary
  14. *.png binary
  15. *.ttf binary