# .gitattributes
# Normalize line endings for all text files.
# Git stores LF internally; local checkouts follow OS conventions unless overridden.
* text=auto

# Always use LF for Python and shell scripts (portable on all OSes)
*.py text eol=lf
*.sh text eol=lf

# Use CRLF for PowerShell scripts (native Windows convention)
*.ps1 text eol=crlf
