-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (72 loc) · 2.1 KB
/
Copy path.gitignore
File metadata and controls
89 lines (72 loc) · 2.1 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Dependencies
node_modules/
tests/integration/*/package-lock.json
demo/package-lock.json
# Build output
dist/
*.tsbuildinfo
# Testing
coverage/
.vitest/
# Environment
.env
.env.local
.env.*.local
# IDE
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# CDK
cdk.out/
.cdk.staging/
# cdk-real-drift local dogfood baselines (the .cdkrd dir is the USER's to commit;
# ignored only inside this repo's own scratch dirs)
/tmp-dogfood/
# Integration-fixture baselines are transient — written by the verify scripts
# during a live run, never committed. Without this, `git add -A` repeatedly swept
# a fixture baseline into a commit (R69/R75/R78/R79). The top-level project
# .cdkrd/ stays committed; only the fixtures' own .cdkrd dirs are ignored.
tests/integration/**/.cdkrd/
# Temporary README-example generator: `vp check`/README-gen drops this self-deleting
# test in tests/; it is explicitly "Not committed" but is easy to sweep up via
# `git add -A`. Ignore it so it can never be accidentally committed.
tests/__readme_gen.test.ts
# Temporary files
*.tmp
.cache/
cdk.context.json
# Claude Code runtime state
.claude/scheduled_tasks.lock
.claude/worktrees/
# Development worktrees (mandated by CLAUDE.md workflow rules; never committed)
.worktrees/
# markgate pr-review sentinel
.markgate-pr-review-sha
# /hunt-bugs cleanup sentinel: lists integ stacks deployed to real AWS; the
# bughunt-clean-gate.sh PreToolUse hook blocks git commit / gh pr create / gh pr
# merge while it is non-empty, so bug-hunt resources cannot be forgotten. Written
# by bughunt-track.sh add, cleared by bughunt-track.sh clear after delete +
# orphan-zero verification.
.markgate-bughunt-pending
.markgate-bughunt-pending.d/
# cdkd-parity tracking-issue sentinel (per-worktree; written by /check-cdkd-parity)
.cdkd-parity-issue
# Worktree-local scratch files for git commit -F / gh --body-file payloads
.commit-msg*.txt
.commit-msg*.md
.pr-body*.md
.pr-body*.txt
.gh-body*.md
.gh-body*.txt
# Node diagnostic reports (issue #402, --report-on-fatalerror)
report.*.json
.markgate-bughunt-verified.d/