-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe27097
commit 19aa4a2
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 @@ | ||
# Autodetect text files and ensure that we normalise their | ||
# line endings to lf internally. When checked out they may | ||
# use different line endings. | ||
* text=auto | ||
|
||
# Check out with crlf (Windows) line endings | ||
*.sln text eol=crlf | ||
*.csproj text eol=crlf | ||
*.cs text diff=csharp eol=crlf | ||
*.resx text eol=crlf | ||
*.vsixmanifest text eol=crlf | ||
packages.config text eol=crlf | ||
App.config text eol=crlf | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
*.snippet text eol=crlf | ||
*.manifest text eol=crlf | ||
*.licenseheader text eol=crlf | ||
|
||
# Check out with lf (UNIX) line endings | ||
*.sh text eol=lf | ||
.gitignore text eol=lf | ||
.gitattributes text eol=lf | ||
*.md text eol=lf | ||
.travis.yml text eol=lf |