-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
85 lines (73 loc) · 1.86 KB
/
Copy path.gitignore
File metadata and controls
85 lines (73 loc) · 1.86 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
# Claude Code — keep local settings and worktrees out of git, but DO track
# shared, version-controlled skills, slash-commands, path-scoped rules, and the
# team settings (settings.json = shared policy; settings.local.json stays
# personal/ignored).
.claude/*
!.claude/skills/
!.claude/commands/
!.claude/rules/
!.claude/settings.json
# Rust
rust/target/
# tree-sitter grammar build artifacts (not part of the tracked grammar source)
tree-sitter/target/
tree-sitter/Cargo.lock
# OCaml / Dune
ocaml/_build/
*.install
*.byte
*.native
*.cmo
*.cmi
*.cmx
*.cmt
*.cmti
*.o
*.a
# Python
__pycache__/
*.pyc
.venv/
# macOS
.DS_Store
# Editor
.vscode/
.idea/
*.swp
*.swo
# Generated / output
ir/expected/
tests/snapshots/
output/
diagnostics.tsv
**/diagnostics.tsv
# stray TSV a doctest/example writes to cwd
camdl_pop.tsv
**/camdl_pop.tsv
# camdl CAS run output. The content-addressed store (default output root
# `./results`, e.g. `rust/crates/cli/results/` when the cli tests run from
# the crate dir) is regenerated by every run and integration test — never
# committed. Worked examples that should live in version control belong
# under docs/ or camdl-book, not here.
results/
# gh#audit-C8 follow-up: generated by Makefile from ir/VERSION before
# `dune build`. Single source of truth lives in ir/VERSION.
ocaml/lib/ir/ir_version_generated.ml
# Secrets / local env
.envrc
mprocs.log
# examples/ — local-only working dir for ad-hoc model runs. The earlier
# "keep analysis TSVs + figures" carve-out never produced committable
# content; collapsed to full exclusion 2026-05-26 alongside removal of
# 4.6 GB of stale March-vintage outputs. If a worked example is meant
# to live in version control, put it under docs/ or its own repo
# (e.g., camdl-book).
examples/
# Web
web/node_modules/
web/dist/
web/compiler-server/node_modules/
web/src/lib/wasm/pkg/
web/.env.local
review-zips/
target/book/