123456789101112131415161718192021 |
- # Auto detect text files and perform LF normalization
- * text=auto
- # Files that should always be text and normalized to native line endings
- *.lua text
- *.md text
- *.mod text
- *.txt text
- *.json text
- # Files that should always be text and use CRLF line endings
- *.bat text eol=crlf
- # Files that are truly binary and should not be modified.
- *.b3d binary
- *.ogg binary
- *.png binary
- *.jpg binary
- # Files to exclude from release packaging
- .* export-ignore
|