forked from microsoft/bond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
60 lines (51 loc) · 964 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Have Git automatically detect text files and normalize them.
* text=auto
# Explicit listing for files we know to be text
*.bond text
*.cabal text
*.cmake text
*.config text
*.cpp text
*.cs text
*.csproj text
*.css text
*.doxygen text
*.el text
*.expressions text
*.gitattributes text
*.gitignore text
*.gitmodules text
*.gradle text
*.groovy text
*.h text
*.hs text
*.html text
*.iml text
*.java text
*.json text
*.md text
*.name text
*.nuspec text
*.proj text
*.properties text
*.props text
*.ps1 text
*.py text
*.targets text
*.tmLanguage text
*.txt text
*.xml text
*.yaml text
# Some Windows-specific files should always be CRLF.
*.cmd text eol=crlf
*.DotSettings text eol=crlf
*.sln text eol=crlf
# Linux scripts need to always have LF. If not, things like building a
# Docker image from Windows will result in un-runable scripts.
*.sh text eol=lf
*.zsh text eol=lf
# These are binary file types.
*.dat binary
*.pfx binary
*.png binary
*.snk binary