Log in
.gitignore 60 lines · 911 B · plaintext Blame
1
*~
2
*.swp
3
*.swo
4
.DS_Store
5
*.o
6
*.pbm
7
8
# Compiled outputs
9
*.c.out
10
/mandelbrot
11
12
# Build artifacts
13
/build/
14
/bin/
15
/legacy/build/
16
/vendor/
17
# Dev convenience symlink to bin/spinel (created by `make`)
18
/spinel
19
20
# Temp files
21
/tmp/
22
/spinel_analyze
23
/spinel_analyze.exe
24
/spinel_codegen
25
/spinel_codegen.exe
26
/legacy/spinel_parse
27
/legacy/spinel_parse.exe
28
/perf.data
29
/perf.data.old
30
/lib/regexp/libspre.a
31
lib/libspinel_rt.a
32
lib/libspbi.a
33
HANDOFF.md
34
35
# Local Claude config
36
.claude/
37
CLAUDE.local.md
38
file_write_poly_arg
39
40
# Scratch design notes and downloaded gems (not for commit)
41
/BIGINT.md
42
/EXCEPTIONS.md
43
/SETJMP.md
44
/OPTIMIZATION.md
45
/ISSUE_TRIAGE.md
46
/PR908.md
47
/POLY-AS-SET.md
48
/t3b.types.json
49
*.gem
50
51
# Test binaries accidentally produced in repo root
52
/hash_shorthand
53
/pattern_pin
54
/method_dispatch_poly_array
55
/const_init_defers_for_main_local
56
/array_new_block_typed_container
57
/sp_split0
58
59
# Machine-local Makefile overrides
60
/local.mk