.gitattributes 809 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Auto detect text files and perform LF normalization
  2. * text=auto
  3. # Denote text files explicitly, normalize line endings to LF on checkin and forbid conversion to CRLF on checkout
  4. # Without eol=lf, core.autocrlf might come in effect
  5. *.html eol=lf diff=html
  6. *.css eol=lf
  7. *.js eol=lf
  8. *.sql eol=lf
  9. *.php eol=lf diff=php
  10. *.yml eol=lf
  11. *.xml eol=lf
  12. *.dist eol=lf
  13. *.conf eol=lf
  14. *.json eol=lf
  15. *.lock eol=lf
  16. # Denote all files that are truly binary and should not be modified.
  17. # Git would detect them automatically, but this will save the autodetection
  18. *.png binary
  19. *.jpg binary
  20. *.gif binary
  21. *.ico binary
  22. *.zip binary
  23. *.jar binary
  24. *.docx binary
  25. *.docx binary
  26. *.dot binary
  27. *.xls binary
  28. *.otf binary
  29. *.eot binary
  30. *.ttf binary
  31. *.ttf binary
  32. *.woff binary
  33. *.phar binary