-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
65 lines (56 loc) · 902 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
61
62
63
64
65
# Automatically normalize line endings for text files
* text=auto
# Language CSharp
*.xaml linguist-language=CSharp
# Markdown Files
# Denotes that the Markdown files are detectable by Linguist
\*\.md linguist-detectable=false
# Specifies that the Markdown files are documentation
*.md linguist-documentation=false
# Specifies that the Markdown files are not generated
*.md linguist-generated=false
# Specifies that the Markdown files are not vendored
*.md linguist-vendored=false
# Binary Files - Denotes binary files to prevent line ending and encoding modifications
# Binary Archive
*.7z
*.br
*.bz2
*.gz
*.rar
*.tar
*.xz
*.zip
# Binary Audio
*.mp3
*.ogg
*.wav
# Binary Document
*.doc
*.docx
*.pdf
*.ppt
*.pptx
*.xls
*.xlsx
# Binary Executable/Library
*.dll
*.exe
*.lib
*.so
# Binary Image
*.bmp
*.gif
*.ico
*.jpeg
*.jpg
*.png
*.svg
*.tif
*.tiff
# Binary Video
*.avi
*.flv
*.mov
*.mp4
*.wmv