-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (68 loc) · 2.01 KB
/
.gitignore
File metadata and controls
80 lines (68 loc) · 2.01 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
# See https://help.github.com/en/github/using-git/ignoring-files
# for more about ignoring files.
# -------------------------------------------------------------------
# Rust / Cargo build artifacts
# -------------------------------------------------------------------
# Build output, anywhere in the tree.
target/
**/target/
# Cargo's incremental + timing dumps.
Cargo-timing.html
**/*.rs.bk
# Profiling / coverage output.
*.prof
*.profraw
**/*.profdata
**/coverage/
# Note: `Cargo.lock` IS tracked. This is a workspace with binaries
# (`synapse`, `synapsed`), so the lockfile must be committed to make
# downstream builds reproducible. Do not add it here.
# -------------------------------------------------------------------
# Editor / IDE / OS noise
# -------------------------------------------------------------------
.idea/
.vscode/
**/.vim/
**/.emacs.d/
*.sublime-project
*.sublime-workspace
*.swp
*.swo
.*.swp
.*.swo
*~
**/#*#
.DS_Store
.DS_Store?
.Spotlight-V100
.Trashes
Thumbs.db
# -------------------------------------------------------------------
# Temp / backup
# -------------------------------------------------------------------
*.bak
*.orig
*.tmp
**/tmp/
**/temp/
# -------------------------------------------------------------------
# Local logs / sample dbs
# -------------------------------------------------------------------
*.log
*.sqlite
# -------------------------------------------------------------------
# Tooling
# -------------------------------------------------------------------
# Local Cargo audit lock (not the workspace lock).
cargo-audit.lock
# -------------------------------------------------------------------
# Claude / agent state
# -------------------------------------------------------------------
.claude/
# -------------------------------------------------------------------
# Local-only design / planning notes — kept out of the public repo.
# -------------------------------------------------------------------
spec-deltas.md
prompt.md
11-synapse-in-memory-agent-task-graph.md
plan-p2.md