.gitattributes 935 B

12345678910111213141516171819202122232425262728293031323334353637
  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. DEPS text eol=lf
  5. yarn.lock text eol=lf
  6. script/zip_manifests/*.manifest text eol=lf
  7. patches/**/.patches merge=union
  8. # Patch file line ending exceptions (patches that affect CRLF files)
  9. reland_lzma_sdk_update_to_24_09.patch -text
  10. # Source code and markdown files should always use LF as line ending.
  11. *.c text eol=lf
  12. *.cc text eol=lf
  13. *.cpp text eol=lf
  14. *.csv text eol=lf
  15. *.grd text eol=lf
  16. *.grdp text eol=lf
  17. *.gn text eol=lf
  18. *.gni text eol=lf
  19. *.h text eol=lf
  20. *.html text eol=lf
  21. *.idl text eol=lf
  22. *.in text eol=lf
  23. *.js text eol=lf
  24. *.json text eol=lf
  25. *.json5 text eol=lf
  26. *.md text eol=lf
  27. *.mm text eol=lf
  28. *.mojom text eol=lf
  29. *.patches text eol=lf
  30. *.proto text eol=lf
  31. *.py text eol=lf
  32. *.ps1 text eol=lf
  33. *.sh text eol=lf
  34. *.ts text eol=lf
  35. *.txt text eol=lf