-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
61 lines (52 loc) · 1.01 KB
/
.gitattributes
File metadata and controls
61 lines (52 loc) · 1.01 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
# Git attributes for proper handling of different file types
# Handle line endings automatically for files detected as text
* text=auto
# Force LF line endings for Python files
*.py text eol=lf
*.pyx text eol=lf
*.pxd text eol=lf
# Force LF line endings for config files
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.toml text eol=lf
*.ini text eol=lf
*.cfg text eol=lf
# Shell scripts
*.sh text eol=lf
*.bash text eol=lf
# Documentation
*.md text eol=lf
*.rst text eol=lf
*.txt text eol=lf
# Jupyter Notebooks
*.ipynb text eol=lf
# Declare files that will always have CRLF line endings on checkout
*.bat text eol=crlf
# Denote binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
*.pyc binary
*.pyd binary
*.dll binary
*.exe binary
*.so binary
*.dylib binary
# Lock files for better diffs
uv.lock linguist-generated=true