Skip to content

Commit 10c3343

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

File tree

1 file changed

+29
-27
lines changed

1 file changed

+29
-27
lines changed

.gitignore

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,40 @@
1-
# Python Artifacts & Environments
2-
.venv/
1+
# Python
32
__pycache__/
4-
*.py[cod]
5-
*.so
6-
*.egg-info/
7-
.pytest_cache/
8-
.ruff_cache/
9-
.mypy_cache/
10-
.coverage
3+
*.pyc
4+
*.pyo
5+
*.pyd
116

12-
# Editor/IDE Specific
13-
.idea/
7+
# Virtual environment
8+
venv/
9+
venv_backup/
10+
env/
11+
.venv/
12+
13+
# IDE / Editor specific files
1414
.vscode/
15+
.idea/
1516
*.swp
17+
*.swo
1618

17-
# Virtual Environment Manager Cache (uv)
18-
/venv/
19+
# Testing and Coverage
20+
.pytest_cache/
21+
.coverage
22+
htmlcov/
1923

20-
# Build/Distribution
21-
dist/
24+
# Build artifacts
2225
build/
23-
*.egg
24-
25-
# Jupyter Notebooks
26-
.ipynb_checkpoints
27-
28-
# Logs and Runtime Data
29-
*.log
30-
/data/
26+
dist/
27+
*.egg-info/
3128

32-
# Secrets and Credentials (NEVER COMMIT)
33-
.env
34-
secrets.json
29+
# Jupyter Notebook checkpoints
30+
.ipynb_checkpoints/
3531

36-
# Operating System Files
32+
# OS generated files
3733
.DS_Store
3834
Thumbs.db
35+
36+
# Ruff cache
37+
.ruff_cache/
38+
39+
# uv cache
40+
.uv/

0 commit comments

Comments
 (0)