| 123456789101112131415161718192021222324252627282930 |
- # Auto detect text files and perform LF normalization
- * text=auto
- # Python files
- *.py text eol=lf
- *.pyi text eol=lf
- # JavaScript/TypeScript files
- *.js text eol=lf
- *.jsx text eol=lf
- *.ts text eol=lf
- *.tsx text eol=lf
- *.json text eol=lf
- # Config files
- *.yml text eol=lf
- *.yaml text eol=lf
- *.toml text eol=lf
- *.ini text eol=lf
- *.cfg text eol=lf
- # Shell scripts
- *.sh text eol=lf
- # Markdown
- *.md text eol=lf
- # Docker
- Dockerfile text eol=lf
- docker-compose*.yml text eol=lf
|