Skip to content

Commit 4ef57bb

Browse files
committed
chore: add .gitignore with standard ignores
1 parent e31ffd4 commit 4ef57bb

1 file changed

Lines changed: 13 additions & 46 deletions

File tree

.gitignore

Lines changed: 13 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,23 @@
1-
# Python
1+
# Byte-compiled
22
__pycache__/
33
*.py[cod]
4-
*.egg-info/
5-
dist/
6-
build/
7-
*.egg
8-
.eggs/
9-
*.whl
4+
*$py.class
105

11-
# Virtual environments
6+
# Env
7+
.env
8+
.venv
129
venv/
13-
.venv/
14-
env/
15-
.env/
1610

17-
# IDE & editors
11+
# IDE
1812
.vscode/
1913
.idea/
2014
*.swp
21-
*.swo
22-
*~
23-
.DS_Store
24-
25-
# Tests & coverage
26-
.pytest_cache/
27-
.coverage
28-
htmlcov/
29-
.coverage.*
30-
31-
# Type checking
32-
.mypy_cache/
33-
.ruff_cache/
3415

35-
# Project specific
36-
results.log
37-
*.db
38-
*.sqlite
39-
generated/
40-
# Generated outputs (ignore content, preserve directory structure)
41-
generated_projects/*
42-
!generated_projects/.gitkeep
43-
runtime_logs/*
44-
!runtime_logs/.gitkeep
45-
memory/*
46-
!memory/.gitkeep
47-
48-
# Experiments
49-
experiments/projects/*
50-
!experiments/projects/.gitkeep
51-
# Track run_log.jsonl (it's structured experiment data)
52-
!experiments/run_log.jsonl
16+
# OS
17+
.DS_Store
18+
Thumbs.db
5319

54-
# Environment
55-
.env
56-
*.key
20+
# Build
21+
dist/
22+
build/
23+
*.egg-info/

0 commit comments

Comments
 (0)