.gitattributes 818 B

1234567891011121314151617181920212223242526272829303132
  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. # Target file for patch has CRLF line endings
  6. patches/nan/apply_allcan_read_write_test.patch eol=crlf
  7. # Source code and markdown files should always use LF as line ending.
  8. *.c text eol=lf
  9. *.cc text eol=lf
  10. *.cpp text eol=lf
  11. *.csv text eol=lf
  12. *.grd text eol=lf
  13. *.grdp text eol=lf
  14. *.gn text eol=lf
  15. *.gni text eol=lf
  16. *.h text eol=lf
  17. *.html text eol=lf
  18. *.idl text eol=lf
  19. *.in text eol=lf
  20. *.js text eol=lf
  21. *.json text eol=lf
  22. *.json5 text eol=lf
  23. *.md text eol=lf
  24. *.mm text eol=lf
  25. *.mojom text eol=lf
  26. *.proto text eol=lf
  27. *.py text eol=lf
  28. *.ps1 text eol=lf
  29. *.sh text eol=lf
  30. *.ts text eol=lf
  31. *.txt text eol=lf