Skip to content

Commit ac49256

Browse files
committed
Add uv environment to gitignore
1 parent 7b3b0a2 commit ac49256

1 file changed

Lines changed: 23 additions & 12 deletions

File tree

.gitignore

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
1-
# Environment files
2-
.vscode
3-
.venv
4-
5-
# Python temp files
6-
__pycache__
7-
*.pyc
8-
*.egg-info
9-
dist
10-
11-
# Data files
12-
/data
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
4+
# Distribution / packaging
5+
dist/
6+
_version.py
7+
*.egg-info/
8+
*.egg
9+
10+
# IDE
11+
.vscode/*
12+
13+
# misc
14+
log*.txt
15+
scratch/
16+
scratch*.py
17+
18+
# Test
19+
.coverage
20+
21+
# Environment
22+
.venv/
23+
uv.lock

0 commit comments

Comments
 (0)