# Normalize all text files to LF in the working tree on all platforms.
# Prevents Windows git checkout from converting LF to CRLF, which breaks
# fixture / parser tests that match on `\n` (e.g. tests/unit/skill-md.test.ts).
* text=auto eol=lf
# Markdown is parsed by SKILL.md tests as LF; pin explicitly even if a future
# attribute change loosens the baseline.
*.md text eol=lf
# Shell scripts must stay LF for POSIX shells.
*.sh text eol=lf
# Ruby (Homebrew formula) must stay LF for portability.
*.rb text eol=lf
# Binary file types — never apply line-ending conversion.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
*.pdf binary
*.zip binary
*.gz binary
*.tar binary
*.tgz binary
*.woff binary
*.woff2 binary
*.ttf binary
*.otf binary
*.eot binary
*.mp3 binary
*.mp4 binary
*.mov binary
*.webm binary