-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
75 lines (65 loc) · 1.16 KB
/
Copy path.gitattributes
File metadata and controls
75 lines (65 loc) · 1.16 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
# Git line endings configuration
# https://help.github.com/articles/dealing-with-line-endings/
# Set default behavior to automatically normalize text files
* text=auto
# Explicitly declare source files to always use LF line endings
*.cs text eol=lf
*.csproj text eol=lf
*.sln text eol=lf
*.json text eol=lf
*.xml text eol=lf
*.config text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.sh text eol=lf
*.bash text eol=lf
# Python files should use LF
*.py text eol=lf
*.pyw text eol=lf
# Build outputs should remain binary
*.dll binary
*.exe binary
*.pdb binary
*.ilk binary
*.obj binary
*.lib binary
*.so binary
*.dylib binary
# NuGet packages
*.nupkg binary
*.snupkg binary
# Images and media files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
*.bmp binary
*.webp binary
# Documents
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
*.ppt binary
*.pptx binary
# Archives
*.zip binary
*.rar binary
*.7z binary
*.tar binary
*.gz binary
# IDE and editor files
.vs/ binary
.vscode/ binary
.idea/ binary
*.suo binary
*.user binary
*.userosscache binary
*.sln.docstates binary
*.pid binary
# Test results
*.trx binary
TestResults/ binary