-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitattributes
194 lines (164 loc) · 3.39 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.java text diff=java
*.groovy text diff=java
*.scala text diff=java
*.gradle text diff=java
# kotlin
*.gradle.kts text diff=kotlin
*.kt text diff=kotlin
# c and cpp
*.c text diff=cpp
*.cc text diff=cpp
*.cxx text diff=cpp
*.cpp text diff=cpp
*.c++ text diff=cpp
*.hpp text diff=cpp
*.h text diff=cpp
*.h++ text diff=cpp
*.hh text diff=cpp
# style
*.css text diff=css
*.scss text diff=css
*.sass text
*.less text
*.df text
# html
*.htm text diff=html
*.html text diff=html
*.xhtml text diff=html
*.jsp text
*.jspf text
*.jspx text
*.tagx text
# Web script related files:
*.vue text
*.ts text
*.js text
# Document files (treat as text but do not normalize line endings):
*.csv -text
# XML related files:
*.xml text diff=xml
*.xsd text
*.xjb text
*.xslt text
*.wsdl text
*.xacml text
# Perl files:
*.pl text diff=perl
*.pm text
# Python files:
*.py text diff=python
*.pxd text
*.py3 text
*.pyw text
*.pyx text
# Code analysis config
.jshintrc text
.jscsrc text
.jshintignore text
.csslintrc text
*.properties text
*.md text
*.mk text
*.htw text
*.sast text
*.json text
*.yml text
*.properties text
*.txt text
*.svg text
*.properties text
*.bp text
*.head text
*.tail text
*.cfg text
config.* text
# Readme and License related files
README text
LICENSE text
COPYING text
NOTICE text
AUTHORS text
# Docker related files
Dockerfile text
dockerfile text
# Declare files that will always have CRLF line endings on checkout.
*.bat text eol=crlf
# Shell scripts
bootstrap eol=lf
configure eol=lf
configure.ac eol=lf
gradlew eol=lf
*.[1-9] eol=lf
*.bash eol=lf
*.sh eol=lf
*.sh.in eol=lf
*.bash eol=lf
# Python files:
*.db binary
*.p binary
*.pkl binary
*.pyc binary
*.pyd binary
*.pyo binary
# Declare files that will always have CRLF line endings on checkout.
*.bat text eol=crlf
*.bat.in text eol=crlf
*.sln text eol=crlf
*.vcproj text eol=crlf
*.pfx -text
# Archives
*.7z filter=lfs diff=lfs merge=lfs -text
*.br filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
# Documents
*.pdf filter=lfs diff=lfs merge=lfs -text
# Images
*.gif filter=lfs diff=lfs merge=lfs -text
*.ico filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.png.in filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text
*.webp filter=lfs diff=lfs merge=lfs -text
# Denote all files that are truly binary and should not be modified.
*.jks binary
*.ico binary
# Fonts
*.woff2 filter=lfs diff=lfs merge=lfs -text
# Compiled Dynamic libraries
*.so binary
*.dylib binary
*.dll binary
# Compiled Static libraries
*.lai binary
*.la binary
*.a binary
*.lib binary
*.class binary
*.jar binary
*.ear binary
*.war binary
# Compiled Object files
*.slo binary
*.lo binary
*.o binary
*.obj binary
# Executables
*.exe binary
*.out binary
*.app binary
# Git config
.gitattributes text
.gitignore text
.gitconfig text
.gitreview text
configure binary
genMakefiles binary
genWindowsMakefiles binary
genWindowsMakefiles.cmd binary