-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (50 loc) · 2.91 KB
/
Copy path.gitignore
File metadata and controls
68 lines (50 loc) · 2.91 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
# ─────────────────────────────────────────────────────────────────────────
# bpetite — git ignore rules
#
# The six entries required by PRD Task 1-1 (bpetite-task-list.md §1-1)
# live in their labelled sections below. Everything else is standard
# Python development debris or aligns this file with the commit-time
# guard in scripts/hooks/forbid_generated_artifacts.py (see docs/hooks.md
# §3.4). Keep the set minimal and grouped; add a new section rather than
# appending stray lines.
# ─────────────────────────────────────────────────────────────────────────
# ── Python bytecode ──────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
# ── Virtual environments ─────────────────────────────────────────────────
.venv/
venv/
env/
# ── Tool caches (PRD Task 1-1) ───────────────────────────────────────────
.pytest_cache/
.mypy_cache/
.ruff_cache/
# ── Build artifacts (hatchling, lands in Task 1-2) ───────────────────────
build/
dist/
*.egg-info/
.eggs/
# ── Coverage ─────────────────────────────────────────────────────────────
.coverage
.coverage.*
htmlcov/
coverage.xml
# ── Generated corpora and tokenizer artifacts (PRD Task 1-1) ─────────────
# Mirrors the scope of scripts/hooks/forbid_generated_artifacts.py so that
# committing one of these files is blocked at two layers: gitignore keeps
# them out of `git add`, the hook blocks them if they somehow get staged.
data/tinyshakespeare.txt
data/tinyshakespeare-*.json
data/*.json
/tokenizer.json
# ── Secrets (global CLAUDE.md §5) ────────────────────────────────────────
.env
.env.*
!.env.example
# ── macOS debris ─────────────────────────────────────────────────────────
.DS_Store
._*
# ── Docs site build output ───────────────────────────────────────────────
# Generated by docs/site/build.py; deployed by .github/workflows/pages.yml.
_site/