.gitattributes 716 B

123456789101112131415161718192021222324252627282930
  1. # `git apply` and friends don't understand CRLF, even on windows. Force those
  2. # files to be checked out with LF endings even if core.autocrlf is true.
  3. *.patch text eol=lf
  4. patches/**/.patches merge=union
  5. # Source code and markdown files should always use LF as line ending.
  6. *.c text eol=lf
  7. *.cc text eol=lf
  8. *.cpp text eol=lf
  9. *.csv text eol=lf
  10. *.grd text eol=lf
  11. *.grdp text eol=lf
  12. *.gn text eol=lf
  13. *.gni text eol=lf
  14. *.h text eol=lf
  15. *.html text eol=lf
  16. *.idl text eol=lf
  17. *.in text eol=lf
  18. *.js text eol=lf
  19. *.json text eol=lf
  20. *.json5 text eol=lf
  21. *.md text eol=lf
  22. *.mm text eol=lf
  23. *.mojom text eol=lf
  24. *.proto text eol=lf
  25. *.py text eol=lf
  26. *.ps1 text eol=lf
  27. *.sh text eol=lf
  28. *.ts text eol=lf
  29. *.txt text eol=lf