-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
37 lines (33 loc) · 746 Bytes
/
Copy path.gitattributes
File metadata and controls
37 lines (33 loc) · 746 Bytes
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
# Set default behavior to automatically normalize line endings
* text=auto
# Force LF line endings for these file types
*.py text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.toml text eol=lf
*.txt text eol=lf
*.sh text eol=lf
# Force CRLF line endings for Windows-specific files
*.bat text eol=crlf
*.cmd text eol=crlf
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.zip binary
*.tar.gz binary
# Exclude virtual environments and build artifacts from Git
.venv/ export-ignore
venv/ export-ignore
env/ export-ignore
__pycache__/ export-ignore
*.pyc export-ignore
.pytest_cache/ export-ignore
build/ export-ignore
dist/ export-ignore
*.egg-info/ export-ignore