# Normalize all text files to LF in the repo.
# Windows users keep CRLF in their working tree;
# what gets committed and what runs on Linux/macOS is LF.
* text=auto eol=lf

# Shell scripts must always be LF (run on POSIX).
*.sh   text eol=lf
*.bash text eol=lf

# Keep generated assets binary so git doesn't normalize them.
*.png binary
*.jpg binary
*.ico binary
*.zip binary
*.tgz binary
*.tar binary
