forked from alceu-frigeri/codedescribe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
145 lines (128 loc) · 2.45 KB
/
.gitattributes
File metadata and controls
145 lines (128 loc) · 2.45 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
##
## from https://github.com/gitattributes/gitattributes.io
## https://schacon.github.io/git/gitattributes.html
##
##############
## Documentation
##############
# ============
*.md text
LICENSE text
AUTHORS text
*.md text
README text
*.txt text
##############
## git itself
##############
# ============
*.gitattributes text
*.gitignore text
.gitattributes text
.gitignore text
##############
## Core latex/pdflatex files:
##############
# ============
*.tex text diff=tex
*.sty text diff=tex
*.cls text diff=tex
*.def text diff=tex
*.bib text diff=tex
##############
## Core html/php files:
##############
# ============
*.php text diff=php
*.phpt text diff=php
*.phtml text diff=html
*.htm text diff=html
*.html text diff=html
*.xml text diff=html
*.css text diff=html
*.sql text
*.csv text
*.js text diff=html
##############
## binaries and others
##############
# ============
*.pdf binary
*.eot binary
*.svg binary
*.ttf binary
*.woff binary
*.woff2 binary
*.jpg binary
*.png binary
*.gif binary
*.ico binary
##############
## PowerShell files (ms, so just crlf)
##############
##############
## Source files
##############
# ============
*.ps1 text eol=crlf
*.ps1x text eol=crlf
*.psm1 text eol=crlf
*.psd1 text eol=crlf
*.ps1xml text eol=crlf
*.pssc text eol=crlf
*.psrc text eol=crlf
*.cdxml text eol=crlf
##############
## To be complete
## C/C++ files
##############
##############
## C/C++ Source files
##############
# ============
*.c text diff=cpp
*.cc text diff=cpp
*.cxx text diff=cpp
*.cpp text diff=cpp
*.cpi text diff=cpp
*.c++ text diff=cpp
*.hpp text diff=cpp
*.h text diff=cpp
*.h++ text diff=cpp
*.hh text diff=cpp
##############
## Compiled Object files
##############
# ============
*.slo binary
*.lo binary
*.o binary
*.obj binary
##############
## Precompiled Headers
##############
# ============
*.gch binary
*.pch binary
##############
## Compiled Dynamic libraries
##############
# ============
*.so binary
*.dylib binary
*.dll binary
##############
## Compiled Static libraries
##############
# ============
*.lai binary
*.la binary
*.a binary
*.lib binary
##############
## Executables
##############
# ============
*.exe binary
*.out binary
*.app binary