.gitattributes 473 B

123456789101112131415161718192021222324252627282930
  1. # Auto detect text files and perform LF normalization
  2. * text=auto
  3. # Python files
  4. *.py text eol=lf
  5. *.pyi text eol=lf
  6. # JavaScript/TypeScript files
  7. *.js text eol=lf
  8. *.jsx text eol=lf
  9. *.ts text eol=lf
  10. *.tsx text eol=lf
  11. *.json text eol=lf
  12. # Config files
  13. *.yml text eol=lf
  14. *.yaml text eol=lf
  15. *.toml text eol=lf
  16. *.ini text eol=lf
  17. *.cfg text eol=lf
  18. # Shell scripts
  19. *.sh text eol=lf
  20. # Markdown
  21. *.md text eol=lf
  22. # Docker
  23. Dockerfile text eol=lf
  24. docker-compose*.yml text eol=lf