Skip to content

Commit 6b1e54b

Browse files
committed
docs: update .gitignore via Apex Optimizer
1 parent 10c3343 commit 6b1e54b

File tree

1 file changed

+42
-20
lines changed

1 file changed

+42
-20
lines changed

.gitignore

Lines changed: 42 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,62 @@
1-
# Python
1+
# Python build artifacts
22
__pycache__/
33
*.pyc
44
*.pyo
55
*.pyd
66

7-
# Virtual environment
7+
# Python package and virtual environment directories
88
venv/
9-
venv_backup/
10-
env/
119
.venv/
12-
13-
# IDE / Editor specific files
14-
.vscode/
10+
env/
11+
.env/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
/site-packages/
17+
/usr/lib/python3/dist-packages/
18+
/usr/lib/python4/dist-packages/
19+
20+
# IDE and editor configuration files
1521
.idea/
22+
.vscode/
23+
*.iml
1624
*.swp
17-
*.swo
18-
19-
# Testing and Coverage
20-
.pytest_cache/
21-
.coverage
22-
htmlcov/
25+
.DS_Store
2326

24-
# Build artifacts
27+
# Build and distribution directories
2528
build/
2629
dist/
30+
*
2731
*.egg-info/
32+
*.egg
33+
34+
# Testing and coverage artifacts
35+
.pytest_cache/
36+
.coverage
37+
htmlcov/
38+
cover/
2839

2940
# Jupyter Notebook checkpoints
3041
.ipynb_checkpoints/
3142

32-
# OS generated files
33-
.DS_Store
34-
Thumbs.db
43+
# Data files (assuming large data files should not be committed)
44+
*.csv
45+
*.tsv
46+
*.feather
47+
*.parquet
48+
*.h5
49+
*.hdf5
3550

36-
# Ruff cache
37-
.ruff_cache/
51+
# Log files
52+
*.log
3853

39-
# uv cache
54+
# Secrets and configuration (should be managed separately)
55+
.env
56+
*.env
57+
secrets.yaml
58+
config.ini
59+
60+
# Specific to Ruff, uv, and other tools
61+
.ruff_cache/
4062
.uv/

0 commit comments

Comments
 (0)