UNPKG

670 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*.jade text eol=lf
13*.js text eol=lf
14*.json text eol=lf
15*.less text eol=lf
16*.scss text eol=lf
17*.md text eol=lf
18*.sh text eol=lf
19*.txt text eol=lf
20*.xml text eol=lf
21*.bat text eol=crlf
22*.cmd text eol=crlf
\No newline at end of file