Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Auto-detect text files and normalize to LF in the repo
* text=auto

# Shell scripts must use LF (they run in Linux containers/devcontainers)
*.sh text eol=lf
entrypoint.sh text eol=lf
Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pattern 'entrypoint.sh' is redundant since line 5 already covers all '*.sh' files, which includes 'entrypoint.sh'. This redundant rule should be removed to keep the configuration cleaner and avoid confusion.

Copilot uses AI. Check for mistakes.

# Python files - LF is standard
*.py text eol=lf

# Dockerfiles run in Linux
Dockerfile text eol=lf

# Config files that might be used in containers
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.toml text eol=lf
*.bicep text eol=lf

# Windows scripts need CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf

# Binary files
*.png binary
*.jpg binary
*.gif binary
*.ico binary