-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (57 loc) · 1.04 KB
/
Copy path.gitignore
File metadata and controls
68 lines (57 loc) · 1.04 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Build / virtual env
.venv/
dist/
build/
*.egg-info/
__pycache__/
*.pyc
# IDE / OS
.env
.pytest_cache/
report/
# Legacy & dev artifacts
legacy/
tdd/
manifest.sha256.json
# Transient dev files
.coverage
cov.txt
debug_test.py
pytest_error.log
temp_report.json
test_lock.txt
tmp_debug/
report.pdf
requirements.txt
# VSCode Extension build artifacts
vscode-extension/node_modules/
vscode-extension/out/
vscode-extension/bin/
vscode-extension/*.vsix
# Example — track only *.py and benchmark/*.md
# Downloaded data is gitignored (re-download via: python example/download_examples.py)
example/*/
!example/benchmark/
example/benchmark/*
!example/benchmark/*.md
# AI Agent
.agent
AGENTS.md
# Benchmark
tmp/
# CLI report outputs written to the working dir (default run leaves these in cwd)
/report.csv
/report.html
/report.md
/report.json
*.sig
*_uncompared.txt
# Virtual environments (any variant, e.g. .venv-ci)
.venv*/
# OS cruft
.DS_Store
Thumbs.db
# Local working notes & transient patches (not for the public repo)
*-readme-audit.md
HANDOFF-*.md
*.patch