.gitattributes 447 B

123456789101112131415161718192021
  1. # Auto detect text files and perform LF normalization
  2. * text=auto
  3. # Files that should always be text and normalized to native line endings
  4. *.lua text
  5. *.md text
  6. *.mod text
  7. *.txt text
  8. *.json text
  9. # Files that should always be text and use CRLF line endings
  10. *.bat text eol=crlf
  11. # Files that are truly binary and should not be modified.
  12. *.b3d binary
  13. *.ogg binary
  14. *.png binary
  15. *.jpg binary
  16. # Files to exclude from release packaging
  17. .* export-ignore