-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
73 lines (68 loc) · 1.61 KB
/
.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
61
62
63
64
65
66
67
68
69
70
71
72
73
# For detailed discussion of line-endings and .gitattributes see
# http://stackoverflow.com/questions/170961/whats-the-best-crlf-handling-strategy-with-git
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
# Text files that should be normalized (convert crlf => lf)
.gitignore text
.gitattr* text
*.asax text
*.ascx text
*.ashx text
*.aspx text
*.bmml text
*.cd text
*.cmd text
*.config text
*.cs text diff=csharp
*.cshtml text
*.csproj text
*.css text
*.datasource text
*.htc text
*.htm text diff=html
*.html text diff=html
*.js text
*.jsx text
*.json text
*.jsonc text
*.Master text
*.md text diff=markdown
*.mrt text
*.proj text
*.rdlc text
*.resx text
*.settings text
*.sln text
*.sql text
*.targets text
*.ts text
*.tsx text
*.tt text
*.txt text
*.vbs text
*.xml text
*.xsd text
*.xslt text
# Text files with forced crlf
*.bat text eol=crlf
*.cmd text eol=crlf
# Text files with forced lf
*.DotSettings text eol=lf
*.ps1 text eol=lf
*.sh text eol=lf
package.json text eol=lf
yarn.lock text eol=lf
# Binary files (left alone)
*.bmp binary
*.dll binary
*.exe binary
*.gif binary
*.ico binary
*.jpg binary
*.mdf binary
*.png binary
*.psd binary
*.snk binary
*.vsd binary
*.xlsb binary
*.xlsx binary