.gitattributes 373 B

123456789101112131415161718
  1. # Ensure shell scripts always have LF line endings
  2. *.sh text eol=lf
  3. hooks/session-start text eol=lf
  4. # Ensure the polyglot wrapper keeps LF (it's parsed by both cmd and bash)
  5. *.cmd text eol=lf
  6. # Common text files
  7. *.md text eol=lf
  8. *.json text eol=lf
  9. *.js text eol=lf
  10. *.mjs text eol=lf
  11. *.ts text eol=lf
  12. # Explicitly mark binary files
  13. *.png binary
  14. *.jpg binary
  15. *.gif binary