forked from rapozoantonio/memorykit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
101 lines (89 loc) · 1.96 KB
/
.gitattributes
File metadata and controls
101 lines (89 loc) · 1.96 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Set default behavior to automatically normalize line endings
* text=auto
# Force batch scripts to always use CRLF line endings so that if a repo is accessed
# in Windows via a file share from Linux, the scripts will work
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf
# Force bash scripts to always use LF line endings so that if a repo is accessed
# in Unix via a file share from Windows, the scripts will work
*.sh text eol=lf
*.bash text eol=lf
# Archives
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
# Images
*.ai binary
*.bmp binary
*.gif binary
*.ico binary
*.jpeg binary
*.jpg binary
*.png binary
*.psd binary
*.svg binary
*.tif binary
*.tiff binary
*.webp binary
# Fonts
*.eot binary
*.otf binary
*.ttf binary
*.woff binary
*.woff2 binary
# Documents
*.doc binary
*.docx binary
*.pdf binary
*.rtf binary
*.xls binary
*.xlsx binary
# .NET specific
*.cs text=auto diff=csharp
*.csx text=auto diff=csharp
*.vb text=auto
*.vbx text=auto
*.sln text eol=crlf merge=union
*.csproj text eol=crlf merge=union
*.vbproj text eol=crlf merge=union
*.vcxproj text eol=crlf merge=union
*.vcproj text eol=crlf merge=union
*.dbproj text eol=crlf merge=union
*.fsproj text eol=crlf merge=union
*.lsproj text eol=crlf merge=union
*.wixproj text eol=crlf merge=union
*.modelproj text eol=crlf merge=union
*.sqlproj text eol=crlf merge=union
*.wwaproj text eol=crlf merge=union
*.xproj text eol=crlf merge=union
*.props text eol=crlf merge=union
*.filters text eol=crlf merge=union
*.vcxitems text eol=crlf merge=union
# Config files
*.config text eol=crlf
*.json text eol=lf
*.xml text eol=crlf
*.yml text eol=lf
*.yaml text eol=lf
# Documentation
*.md text eol=lf
*.markdown text eol=lf
*.txt text eol=lf
# Web
*.css text eol=lf
*.htm text eol=lf
*.html text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
# Docker
Dockerfile text eol=lf
*.dockerfile text eol=lf
# Compiled files
*.dll binary
*.exe binary
*.nupkg binary
*.snupkg binary