.gitattributes 761 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # These settings are for any web project
  2. # Handle line endings automatically for files detected as text
  3. # and leave all files detected as binary untouched.
  4. * text=auto
  5. # Force the following filetypes to have unix eols, so Windows does not break them
  6. *.* text eol=lf
  7. # Windows forced line-endings
  8. /.idea/* text eol=crlf
  9. #
  10. ## These files are binary and should be left untouched
  11. #
  12. # (binary is a macro for -text -diff)
  13. *.png binary
  14. *.jpg binary
  15. *.jpeg binary
  16. *.gif binary
  17. *.ico binary
  18. *.mov binary
  19. *.mp4 binary
  20. *.mp3 binary
  21. *.flv binary
  22. *.fla binary
  23. *.swf binary
  24. *.gz binary
  25. *.zip binary
  26. *.7z binary
  27. *.ttf binary
  28. *.eot binary
  29. *.woff binary
  30. *.pyc binary
  31. *.pdf binary
  32. *.ez binary
  33. *.bz2 binary
  34. *.swp binary
  35. *.cur binary
  36. *.wav binary
  37. *.webp binary
  38. *.woff2 binary