-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
67 lines (52 loc) · 1.79 KB
/
Copy path.gitignore
File metadata and controls
67 lines (52 loc) · 1.79 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
# Cargo build artifacts
/target/
**/target/
# C firmware build artifacts (baremetal-qemu-c)
embedded/baremetal-qemu-c/firmware/*.elf
embedded/baremetal-qemu-c/firmware/firmware.elf
embedded/baremetal-qemu-c/firmware/golden.h
# Embedded freertos-srt reference product build artifacts (all under build/)
embedded/freertos-srt/build/
embedded/freertos-srt/example/host/target/
# Rust analyzer
.rust-analyzer/
# Editor / IDE
/.idea/
/.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Generated bindings (committed deliberately for inspection during dev; can flip later)
# /crates/srt-sys/src/bindings.rs
# Future: jextract / cbindgen output if we treat them as build artifacts
# /crates/srt-c/include/generated/
# Local environment files
.env
.env.local
# Workspace-local Python venv for tst-py maturin development. Distinct
# from the parent-level `.venv` used for the research PDF pipeline; this
# one lives inside the workspace because maturin develops against the
# crate Cargo.toml from CWD.
/.venv/
# Python tooling caches (mypy / pytest / bytecode). Project-local rules so
# contributors without a matching global gitignore don't see them as untracked,
# regardless of where the cache lands (root, bindings/python, package subdirs).
.mypy_cache/
.pytest_cache/
__pycache__/
*.pyc
# Local Claude Code guidance — not part of the publishable repo
/CLAUDE.md
# Example output files dropped at the repo root. Root-only — does not
# affect tests/fixtures/**/*.ts.
/*.ts
# Local-only test fixtures — never commit. Only synthetic/generated
# fixtures are tracked in this repo.
**/tests/fixtures/local/
# Parallel-subagent worktrees (see CLAUDE.md feedback_per_subagent_worktree_for_parallel_code_changes.md)
/.worktrees/
# Claude Code scratch directory (Agent isolation:"worktree" creates worktrees here)
/.claude/