# Git attributes for consistent line endings across platforms
# See: https://git-scm.com/docs/gitattributes

# Auto detect text files and normalize line endings to LF
* text=auto eol=lf

# Explicitly declare files that should always have LF line endings
*.py text eol=lf
*.md text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.toml text eol=lf
*.txt text eol=lf
*.sh text eol=lf

# Declare files that should always have CRLF line endings
*.bat text eol=crlf
*.cmd text eol=crlf

# Denote binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.pyc binary
*.pyd binary
*.dll binary
*.exe binary
*.so binary
