.gitattributes 724 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Auto detect text files and perform LF normalization
  2. * text=auto
  3. # Go files
  4. *.go text eol=lf
  5. # Config files
  6. *.json text eol=lf
  7. *.yaml text eol=lf
  8. *.yml text eol=lf
  9. *.toml text eol=lf
  10. *.md text eol=lf
  11. # JavaScript/TypeScript files
  12. *.js text eol=lf
  13. *.jsx text eol=lf
  14. *.ts text eol=lf
  15. *.tsx text eol=lf
  16. *.html text eol=lf
  17. *.css text eol=lf
  18. # Shell scripts
  19. *.sh text eol=lf
  20. # Binary files
  21. *.png binary
  22. *.jpg binary
  23. *.jpeg binary
  24. *.gif binary
  25. *.ico binary
  26. *.woff binary
  27. *.woff2 binary
  28. # ============================================
  29. # GitHub Linguist - Language Detection
  30. # ============================================
  31. # Mark web frontend as vendored so GitHub recognizes this as a Go project
  32. electron/** linguist-vendored