.gitattributes 768 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # TypeScript
  2. *.ts text eol=lf
  3. *.tsx text eol=lf
  4. # JavaScript
  5. *.js text eol=lf
  6. *.jsx text eol=lf
  7. *.mjs text eol=lf
  8. *.cjs text eol=lf
  9. # Svelte
  10. *.svelte text eol=lf
  11. # HTML/CSS
  12. *.html text eol=lf
  13. *.css text eol=lf
  14. *.scss text eol=lf
  15. *.less text eol=lf
  16. # Config files and JSON
  17. *.json text eol=lf
  18. *.jsonc text eol=lf
  19. *.yml text eol=lf
  20. *.yaml text eol=lf
  21. *.toml text eol=lf
  22. # Shell scripts
  23. *.sh text eol=lf
  24. # Markdown & docs
  25. *.md text eol=lf
  26. *.mdx text eol=lf
  27. *.txt text eol=lf
  28. # Git-related
  29. .gitattributes text eol=lf
  30. .gitignore text eol=lf
  31. # Prettier and other dotfiles
  32. .prettierrc text eol=lf
  33. .prettierignore text eol=lf
  34. .eslintrc text eol=lf
  35. .eslintignore text eol=lf
  36. .stylelintrc text eol=lf
  37. .editorconfig text eol=lf
  38. # Misc
  39. *.env text eol=lf
  40. *.lock text eol=lf