.gitattributes 808 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Core settings
  2. * text=auto eol=lf
  3. # TypeScript/React files
  4. *.ts linguist-language=TypeScript
  5. *.tsx linguist-language=TypeScript
  6. # JavaScript files
  7. *.js linguist-language=JavaScript
  8. *.cjs linguist-language=JavaScript
  9. *.mjs linguist-language=JavaScript
  10. # Web files
  11. *.html text
  12. *.css text
  13. *.json text
  14. # Scripts
  15. *.sh text eol=lf
  16. # Documentation
  17. *.md text
  18. # Config files (used in project)
  19. .eslintrc text
  20. .prettierrc text
  21. .nvmrc text
  22. tsconfig.json text
  23. turbo.json text
  24. # Chrome extension
  25. *.crx binary
  26. *.pem binary
  27. # Fonts (used in UI)
  28. *.woff2 binary
  29. *.ttf binary
  30. # Images (used in UI)
  31. *.svg text
  32. *.png binary
  33. *.jpg binary
  34. *.jpeg binary
  35. *.gif binary
  36. *.ico binary
  37. # Additional common file types
  38. *.yaml text
  39. *.yml text
  40. *.lock text
  41. package-lock.json text -diff
  42. yarn.lock text -diff
  43. pnpm-lock.yaml text -diff