.gitattributes 410 B

1234567891011121314
  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. *.cc text eol=lf
  7. *.mm text eol=lf
  8. *.h text eol=lf
  9. *.js text eol=lf
  10. *.ts text eol=lf
  11. *.py text eol=lf
  12. *.ps1 text eol=lf
  13. *.md text eol=lf