.gitattributes 562 B

12345678910111213141516171819202122
  1. # Define the line ending behavior of the different file extensions
  2. # Set default behaviour, in case users don't have core.autocrlf set.
  3. * text=auto
  4. * text eol=lf
  5. # Denote all files that are truly binary and should not be modified.
  6. *.png binary
  7. *.jpg binary
  8. *.gif binary
  9. *.ico binary
  10. *.mo binary
  11. *.pdf binary
  12. *.dll binary
  13. *.exe binary
  14. # Remove files for archives generated using `git archive`
  15. phpunit.xml.dist export-ignore
  16. .travis.yml export-ignore
  17. .gitignore export-ignore
  18. .gitattributes export-ignore
  19. .editorconfig export-ignore
  20. tests/test_app export-ignore