.gitattributes 864 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Set default behavior
  2. * text=auto eol=lf
  3. # Ensure sources are processed
  4. *.conf text
  5. *.css text
  6. *.html text diff=html
  7. *.js text
  8. *.md text
  9. *.php text diff=php
  10. Dockerfile text
  11. # Do not alter images nor minified scripts nor fonts
  12. *.ico binary
  13. *.jpg binary
  14. *.png binary
  15. *.svg binary
  16. *.otf binary
  17. *.eot binary
  18. *.woff binary
  19. *.woff2 binary
  20. *.ttf binary
  21. *.min.css binary
  22. *.min.js binary
  23. # Exclude from Git archives
  24. .gitattributes export-ignore
  25. .github export-ignore
  26. .gitignore export-ignore
  27. .travis.yml export-ignore
  28. doc/**/*.json export-ignore
  29. doc/**/*.md export-ignore
  30. docker/ export-ignore
  31. Doxyfile export-ignore
  32. Makefile export-ignore
  33. phpunit.xml export-ignore
  34. tests/ export-ignore