-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
430 lines (364 loc) · 12.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
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
## https://git-scm.com/docs/gitattributes
# ┌──────────────────────────────────────────────┐
# │ │
# │ ┌─┐┬┌┬┐┌─┐┌┬┐┌┬┐┬─┐┬┌┐ ┬ ┬┌┬┐┌─┐┌─┐ │
# │ │ ┬│ │ ├─┤ │ │ ├┬┘│├┴┐│ │ │ ├┤ └─┐ │
# │ o└─┘┴ ┴ ┴ ┴ ┴ ┴ ┴└─┴└─┘└─┘ ┴ └─┘└─┘ │
# │ │
# └──────────────────────────────────────────────┘
##################################################
## ##
## Common Setting ##
## ##
##################################################
# Auto detect text files and perform LF normalization
# ============
* text=auto
## The above will handle all files NOT found below ##
##################################################
## ##
## Git ##
## ##
##################################################
# These files are text and should be normalized (Convert crlf => lf)
# ============
*.gitattributes text
.gitignore text
# Enable syntax highlighting for files with `.gitattributes` extensions.
# ============
*.gitattributes linguist-language=gitattributes
*.gitattributes linguist-detectable=true
*.gitattributes linguist-documentation=false
# Exclude files from exporting
# ============
.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
##################################################
## ##
## Documents ##
## ##
##################################################
*.bibtex text diff=bibtex
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
*.md text diff=markdown
*.mdx text diff=markdown
*.tex text diff=tex
*.adoc text
*.textile text
*.mustache text
*.csv text eol=crlf
*.tab text
*.tsv text
*.txt text
*.sql text
*.epub diff=astextplain
##################################################
## ##
## Graphics ##
## ##
##################################################
*.ai binary
*.bmp binary
*.eps binary
*.gif binary
*.gifv binary
*.ico binary
*.jng binary
*.jp2 binary
*.jpg binary
*.jpeg binary
*.jpx binary
*.jxr binary
*.pdf binary
*.png binary
*.psb binary
*.psd binary
*.svgz binary
*.tif binary
*.tiff binary
*.wbmp binary
*.webp binary
# SVG treated as an asset (binary) by default.
# ============
*.svg text
# If you want to treat it as binary,
# use the following line instead.
# ============
# *.svg binary
##################################################
## ##
## Audio ##
## ##
##################################################
*.kar binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
*.ra binary
##################################################
## ##
## Video ##
## ##
##################################################
*.3gpp binary
*.3gp binary
*.as binary
*.asf binary
*.asx binary
*.avi binary
*.fla binary
*.flv binary
*.m4v binary
*.mng binary
*.mov binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.ogv binary
*.swc binary
*.swf binary
*.webm binary
##################################################
## ##
## Fonts ##
## ##
##################################################
*.ttf binary
*.eot binary
*.otf binary
*.woff binary
*.woff2 binary
##################################################
## ##
## Scripts ##
## ##
##################################################
*.bash text eol=lf
*.fish text eol=lf
*.ksh text eol=lf
*.sh text eol=lf
*.zsh text eol=lf
# These are explicitly windows files and should use crlf
# ============
*.bat text eol=crlf
*.cmd text eol=crlf
##################################################
## ##
## Serialisation ##
## ##
##################################################
*.json text
*.toml text
*.xml text
*.yaml text
*.yml text
*.cfg text
##################################################
## ##
## Archives ##
## ##
##################################################
*.7z binary
*.bz binary
*.bz2 binary
*.bzip2 binary
*.gz binary
*.lz binary
*.lzma binary
*.rar binary
*.tar binary
*.taz binary
*.tbz binary
*.tbz2 binary
*.tgz binary
*.tlz binary
*.txz binary
*.xz binary
*.Z binary
*.zip binary
*.zst binary
##################################################
## ##
## Patch ##
## ##
##################################################
# Text files where line endings should be preserved
# ============
*.patch -text
##################################################
## ##
## DevContainers ##
## ##
##################################################
# Fix syntax highlighting on GitHub to allow comments
# ============
.devcontainer.json linguist-language=JSON-with-Comments
devcontainer.json linguist-language=JSON-with-Comments
##################################################
## ##
## VSCode ##
## ##
##################################################
# Fix syntax highlighting on GitHub to allow comments
# ============
.vscode/*.json linguist-language=JSON-with-Comments
##################################################
## ##
## Terraform ##
## ##
##################################################
*.tf text eol=lf
*.tf.json text eol=lf
*.tfvars text eol=lf
##################################################
## ##
## Go ##
## ##
##################################################
*.go -text diff=golang eol=lf
##################################################
## ##
## Markdown ##
## ##
##################################################
*.markdown text diff=markdown linguist-detectable
*.md text diff=markdown linguist-detectable
*.mdwn text diff=markdown linguist-detectable
*.mdown text diff=markdown linguist-detectable
*.mkd text diff=markdown linguist-detectable
*.mkdn text diff=markdown linguist-detectable
*.mdtxt text
*.mdtext text
##################################################
## ##
## PowerShell ##
## ##
##################################################
*.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
##################################################
## ##
## RC files ##
## ##
##################################################
# Generic .*rc files like .eslintrc or .shellcheckrc
# =============
*.*rc text
##################################################
## ##
## Python ##
## ##
##################################################
# Source files
# ============
*.pxd text diff=python
*.py text diff=python
*.py3 text diff=python
*.pyw text diff=python
*.pyx text diff=python
*.pyz text diff=python
*.pyi text diff=python
# Binary files
# ============
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary export-ignore
*.pyo binary export-ignore
*.pyd binary
##################################################
## ##
## Jinja Templates ##
## ##
##################################################
# Jinja2 templates
# ============
*.j2 text
*.jinja text
# Specific Types
# ============
*.yaml.j2 linguist-language=YAML
*.yml.j2 linguist-language=YAML
##################################################
## ##
## SOPS ##
## ##
##################################################
# SOPS encrypted files
# ============
*.sops.* text diff=sopsdiffer
##################################################
## ##
## BUN/Node ##
## ##
##################################################
*.lockb binary diff=lockb
##################################################
## ##
## Docker ##
## ##
##################################################
# Dockerfile
# ============
Dockerfile* text eol=lf
# Docker Compose
# ============
docker-compose.yml text eol=lf
docker-compose.yaml text eol=lf
# Docker Ignore
# ============
.dockerignore text eol=lf
##################################################
## ##
## Ansible ##
## ##
##################################################
ansible.cfg text eol=lf
##################################################
## ##
## Documentation ##
## ##
##################################################
*.ipynb text eol=lf
*.markdown text diff=markdown
*.md text diff=markdown
*.mdwn text diff=markdown
*.mdown text diff=markdown
*.mkd text diff=markdown
*.mkdn text diff=markdown
*.mdtxt text
*.mdtext text
*.txt text
AUTHORS text
CHANGELOG text
CHANGES text
CONTRIBUTING text
COPYING text
copyright text
*COPYRIGHT* text
INSTALL text
license text
LICENSE text
NEWS text
readme text
*README* text
TODO text