2015-06-24 07:33:11 +02:00
|
|
|
# Automatically normalize line endings for all text-based files
|
|
|
|
# http://git-scm.com/docs/gitattributes#_end_of_line_conversion
|
|
|
|
* text=auto
|
|
|
|
|
2015-06-24 07:39:16 +02:00
|
|
|
# For the following file types, normalize line endings to LF on checking and
|
|
|
|
# prevent conversion to CRLF when they are checked out (this is required in
|
|
|
|
# order to prevent newline related issues)
|
2015-06-24 07:33:11 +02:00
|
|
|
.* text eol=lf
|
|
|
|
*.go text eol=lf
|
|
|
|
*.yml text eol=lf
|
|
|
|
*.html text eol=lf
|
|
|
|
*.css text eol=lf
|
|
|
|
*.js text eol=lf
|
|
|
|
*.json text eol=lf
|
|
|
|
LICENSE text eol=lf
|
|
|
|
|
2015-10-08 22:54:31 +02:00
|
|
|
# Exclude `website` and `recipes` from Github's language statistics
|
2015-06-24 07:33:11 +02:00
|
|
|
# https://github.com/github/linguist#using-gitattributes
|
2015-07-12 01:16:43 +02:00
|
|
|
recipes/* linguist-documentation
|
2015-06-24 07:39:16 +02:00
|
|
|
website/* linguist-documentation
|