.gitattributes 355 B

12345678910111213141516171819202122232425
  1. * text=auto
  2. # Shell scripts - always use LF endings
  3. *.sh text eol=lf
  4. *.bash text eol=lf
  5. # Docker files
  6. Dockerfile text eol=lf
  7. docker-compose.yml text eol=lf
  8. # Java/Maven
  9. *.java text eol=lf
  10. *.xml text eol=lf
  11. *.pom text eol=lf
  12. # Frontend
  13. *.ts text eol=lf
  14. *.tsx text eol=lf
  15. *.js text eol=lf
  16. *.jsx text eol=lf
  17. *.json text eol=lf
  18. # SQL
  19. *.sql text eol=lf