UNPKG

567 BPlain TextView Raw
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
5# For the following file types, normalize line endings to LF on
6# checkin and prevent conversion to CRLF when they are checked out
7# (this is required in order to prevent newline related issues like,
8# for example, after the build script is run)
9.* text eol=lf
10*.css text eol=lf
11*.html text eol=lf
12*.js text eol=lf
13*.json text eol=lf
14*.md text eol=lf
15*.sh text eol=lf
16*.txt text eol=lf
17*.xml text eol=lf