-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
81 lines (69 loc) · 1.64 KB
/
Copy path.gitignore
File metadata and controls
81 lines (69 loc) · 1.64 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
# deps
node_modules/
.pnpm-store/
# build
dist/
build/
.next/
*.tsbuildinfo
# env
.env
.env.local
.env.*.local
!.env.example
# claude / plugin runtime
# Local /pf:new runs are ignored; clean-room evidence runs (W4.10 / issue #58)
# are committed under runs/r-clean-*/ — see tests/fixtures/ASSESSMENT.md
# (the broad re-include negate lives at the bottom of this file so it wins
# over later patterns like '*.log').
runs/*
.claude/cache/
**/memory/agents/
**/trace.jsonl
# os
.DS_Store
Thumbs.db
# macOS Finder/iCloud duplicates (#68 — block patterns like
# "idea-spec.schema 2.json", "README.md copy", "report copy 3.pdf"
# that Finder/iCloud silently spawn on conflict).
# Cover both single- and double-digit suffixes (Finder uses sequential
# numbers; >9 conflicts is rare but possible — gitignore is cheap, the
# 26-advocate scan that picks up `*.md` is not). The bare `* copy` /
# `* copy N` forms (no extension) are emitted by Finder when copying
# extension-less files like LICENSE.
*\ [0-9]
*\ [0-9].*
*\ [0-9][0-9]
*\ [0-9][0-9].*
*\ copy
*\ copy.*
*\ copy\ [0-9]
*\ copy\ [0-9].*
*\ copy\ [0-9][0-9]
*\ copy\ [0-9][0-9].*
# editor
.vscode/
.idea/
*.swp
# logs
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
# python
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
# test
coverage/
.nyc_output/
# misc
.turbo
# clean-room evidence runs (W4.10 / issue #58) — re-include AFTER all earlier
# patterns so '*.log' / 'runs/*' do not strip the committed artifacts. Order
# matters: in .gitignore the *last* matching pattern wins.
!runs/r-clean-*/
!runs/r-clean-*/**
# Claude Code session locks (per-process state, not source)
.claude/scheduled_tasks.lock