-
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into travis-ci-migration
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Git attributes | ||
# https://git-scm.com/docs/gitattributes | ||
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes | ||
|
||
# Normalize line endings for all files that git determines to be text. | ||
# https://git-scm.com/docs/gitattributes#gitattributes-Settostringvalueauto | ||
* text=auto | ||
|
||
# Normalize line endings to LF on checkin, and do NOT convert to CRLF when checking-out on Windows. | ||
# https://git-scm.com/docs/gitattributes#gitattributes-Settostringvaluelf | ||
*.txt text eol=lf | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.css text eol=lf | ||
*.scss text eol=lf | ||
*.map text eol=lf | ||
*.js text eol=lf | ||
*.jsx text eol=lf | ||
*.ts text eol=lf | ||
*.tsx text eol=lf | ||
*.json text eol=lf | ||
*.yml text eol=lf | ||
*.yaml text eol=lf | ||
*.xml text eol=lf | ||
*.svg text eol=lf |