-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitattributes
108 lines (105 loc) · 2.9 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
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
102
103
104
105
106
107
108
# GIT files
.gitattributes text eol=lf
.gitignore text eol=lf
#.gitconfig text eol=lf
#.gitmodules text eol=lf
.gitkeep text eol=lf
# Vendored
LICENSE*.* linguist-vendored
# File types (text/binary, EOL, language, documentation)
#.8bf binary
#.afs text eol=cr
#.ai binary
#.bat text eol=crlf linguist-language=Batchfile
#.bin binary
#.bmp binary
#.c text eol=crlf linguist-language=C
#.cpp text eol=crlf linguist-language=C++
#.csv text eol=crlf
#.cur binary
#.def text eol=crlf
#.dll binary
#.docx binary linguist-documentation
#.exe binary
#.exp text eol=crlf
#.ffx binary
#.h text eol=crlf linguist-language=C
#.hpp text eol=crlf linguist-language=C++
#.html text eol=crlf linguist-language=HTML
#.ico binary
#.jpg binary
#.l text eol=crlf linguist-language=Lex
#Makefile.mac text eol=lf linguist-language=Makefile
#.mak text eol=crlf linguist-language=Makefile
#FilterFoundry.make text eol=lf linguist-language=Makefile
#.mcp binary
#.md text eol=crlf linguist-language=Markdown linguist-documentation
#.pdf binary linguist-documentation
#.pff text eol=cr
#*.php text eol=crlf linguist-language=PHP
#.plist text eol=lf
#.png binary
#.prm binary
#.psd binary
#.r text eol=crlf linguist-language=R
#.rc text eol=crlf
#.sln text eol=crlf
#.svg binary
#.tgt text eol=crlf
#.txt text eol=crlf linguist-language=Text linguist-documentation
#.vcxproj text eol=crlf
#Makefile.win text eol=crlf linguist-language=Makefile
#.wpj text eol=crlf
#.xlsx binary
#.xml text eol=crlf linguist-language=XML
#.y text eol=crlf linguist-language=Yacc
#.yy text eol=crlf linguist-language=Yacc
# Without "eol" (AFS and PFF are binary since eol=cr is not supported):
# see https://lore.kernel.org/git/77aacb3b44523223c7647bdae1702a31@daniel-marschall.de/
*.8bf binary
*.afs binary
*.ai binary
*.bat text=auto linguist-language=Batchfile
*.bin binary
*.bmp binary
*.c text=auto linguist-language=C
*.cpp text=auto linguist-language=C++
*.csv text=auto
*.cur binary
*.def text=auto
*.dll binary
*.docx binary linguist-documentation
*.exe binary
*.exp text=auto
*.ffx binary
*.h text=auto linguist-language=C
*.hpp text=auto linguist-language=C++
*.html text=auto linguist-language=HTML
*.ico binary
*.jpg binary
*.l text=auto linguist-language=Lex
Makefile.mac text=auto linguist-language=Makefile
*.mak text=auto linguist-language=Makefile
FilterFoundry.make text=auto linguist-language=Makefile
*.mcp binary
*.md text=auto linguist-language=Markdown linguist-documentation
*.pdf binary linguist-documentation
*.pff binary
*.php text=auto linguist-language=PHP
*.plist text=auto
*.png binary
*.prm binary
*.psd binary
*.r text=auto linguist-language=R
*.rc text=auto
*.sln text=auto
*.svg binary
*.tgt text=auto
*.txt text=auto linguist-language=Text linguist-documentation
*.vcxproj text=auto
Makefile.win text=auto linguist-language=Makefile
*.wpj text=auto
*.xlsx binary
*.xml text=auto linguist-language=XML
*.y text=auto linguist-language=Yacc
*.yy text=auto linguist-language=Yacc