-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
115 lines (115 loc) · 2.55 KB
/
.gitattributes
File metadata and controls
115 lines (115 loc) · 2.55 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
# Git attributes for MUXI Runtime
# Auto detect text files and perform LF normalization
* text=auto
# Python files
*.py text diff=python
*.pyw text diff=python
*.pyx text diff=python
*.pyi text diff=python
*.pyc binary
*.pyo binary
*.pyd binary
# Documentation
*.md text
*.rst text
*.txt text
LICENSE text
README text
CONTRIBUTING text
CHANGELOG text
AUTHORS text
# Configuration files
*.yaml text
*.yml text
*.json text
*.toml text
*.ini text
*.cfg text
.gitignore text
.gitattributes text
.editorconfig text
# Shell scripts
*.sh text eol=lf
*.bash text eol=lf
*.zsh text eol=lf
# Batch scripts
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Test assets - Binary files
tests/assets/files/*.pdf binary
tests/assets/files/*.png binary
tests/assets/files/*.jpg binary
tests/assets/files/*.jpeg binary
tests/assets/files/*.gif binary
tests/assets/files/*.webp binary
tests/assets/files/*.svg text
tests/assets/files/*.mp3 binary
tests/assets/files/*.wav filter=lfs diff=lfs merge=lfs -text
tests/assets/files/*.mp4 filter=lfs diff=lfs merge=lfs -text
tests/assets/files/*.avi binary
tests/assets/files/*.mov filter=lfs diff=lfs merge=lfs -text
tests/assets/files/*.webm binary
tests/assets/files/*.xlsx binary
tests/assets/files/*.xls binary
tests/assets/files/*.pptx filter=lfs diff=lfs merge=lfs -text
tests/assets/files/*.ppt binary
tests/assets/files/*.docx binary
tests/assets/files/*.doc binary
tests/assets/files/*.zip binary
tests/assets/files/*.tar binary
tests/assets/files/*.gz binary
tests/assets/files/*.7z binary
tests/assets/files/*.rar binary
# Jupyter notebooks
*.ipynb text
# Data files
*.csv text
*.tsv text
*.parquet binary
*.feather binary
*.pickle binary
*.pkl binary
*.npy binary
*.npz binary
*.h5 binary
*.hdf5 binary
# Model files
*.onnx binary
*.pt binary
*.pth binary
*.safetensors binary
*.ckpt binary
*.bin binary
# Compiled files
*.so binary
*.dylib binary
*.dll binary
*.exe binary
# Archives
*.tar binary
*.gz binary
*.zip binary
*.7z binary
*.rar binary
# Fonts
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
*.eot binary
# Database files
*.db binary
*.sqlite binary
*.sqlite3 binary
# Lock files (should not be modified)
*.lock text -diff
poetry.lock text -diff
Pipfile.lock text -diff
package-lock.json text -diff
yarn.lock text -diff
tests/assets/files/*.m4a filter=lfs diff=lfs merge=lfs -text
tests/assets/files/large.pdf filter=lfs diff=lfs merge=lfs -text
tests/assets/files/report.pdf filter=lfs diff=lfs merge=lfs -text
tests/assets/files/document.docx filter=lfs diff=lfs merge=lfs -text
tests/assets/files/slide.png filter=lfs diff=lfs merge=lfs -text