# Enforce LF line endings to keep ruff format --check consistent across OS

# Default to LF for all text
* text=auto eol=lf

# Explicit common text formats
*.py text eol=lf
*.pyi text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.ini text eol=lf
*.cfg text eol=lf
*.txt text eol=lf
*.json text eol=lf
*.sh text eol=lf

# Keep Windows scripts with CRLF if you add them later
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
