.gitattributes 691 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 checking and
  5. # prevent conversion to CRLF when they are checked out (this is required in
  6. # order to prevent newline related issues)
  7. .* text eol=lf
  8. *.go text eol=lf
  9. *.yml text eol=lf
  10. *.html text eol=lf
  11. *.css text eol=lf
  12. *.js text eol=lf
  13. *.json text eol=lf
  14. LICENSE text eol=lf
  15. # Exclude `website` and `cookbook` from GitHub's language statistics
  16. # https://github.com/github/linguist#using-gitattributes
  17. cookbook/* linguist-documentation
  18. website/* linguist-documentation