.gitattributes 627 B

1234567891011121314151617181920
  1. # Automatically normalize line endings for all text-based files
  2. # http://git-scm.com/docs/gitattributes#_end_of_line_conversion
  3. * text=auto
  4. # For the following file types, normalize line endings to LF on
  5. # checkin and prevent conversion to CRLF when they are checked out
  6. # (this is required in order to prevent newline related issues like,
  7. # for example, after the build script is run)
  8. .* text eol=lf
  9. *.css text eol=lf
  10. *.html text eol=lf
  11. *.jade text eol=lf
  12. *.js text eol=lf
  13. *.json text eol=lf
  14. *.less text eol=lf
  15. *.scss text eol=lf
  16. *.md text eol=lf
  17. *.sh text eol=lf
  18. *.txt text eol=lf
  19. *.xml text eol=lf