.gitattributes 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ##### Source code #####
  2. ## C++ and C source files
  3. *.c text eol=lf diff=cpp
  4. *.h text eol=lf diff=cpp
  5. *.cc text eol=lf diff=cpp
  6. *.cpp text eol=lf diff=cpp
  7. *.cxx text eol=lf diff=cpp
  8. *.hpp text eol=lf diff=cpp
  9. ## Python scripts
  10. *.py text eol=lf diff=python
  11. ## Perl scripts/libraries/modules
  12. *.perl text eol=lf diff=perl
  13. *.pl text eol=lf diff=perl
  14. *.pm text eol=lf diff=perl
  15. ## Shell scripts
  16. *.sh text eol=lf
  17. *.bash text eol=lf
  18. ## Windows batch and PowerShell scripts
  19. *.bat text eol=crlf
  20. *.cmd text eol=crlf
  21. *.ps1 text eol=crlf
  22. ##### Other file types #####
  23. ## Text files and documentation
  24. *.txt text
  25. README* text
  26. INSTALL* text
  27. LICENSE* text
  28. ## Non-text documentation
  29. *.html text diff=html
  30. *.pdf binary
  31. *.rtf binary
  32. ## git files
  33. .gitignore text eol=lf
  34. .gitattributes text eol=lf
  35. ## bazel files
  36. WORKSPACE text eol=lf
  37. BUILD text eol=lf