.gitattributes 341 B

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