-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (46 loc) · 1.23 KB
/
.gitignore
File metadata and controls
57 lines (46 loc) · 1.23 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
# IDE/editor config (machine-specific)
.vscode/
.DS_Store
# Local PR description scratch file (do not commit)
.pr-description.md
# Nim compiler cache and build artifacts
nimcache/
nimblecache/
.tmp/
# Generated documentation
/site/
# Legacy nim doc artifacts (removed in v4.2.0)
/json/
/nimdoc.cfg
/htmldocs/
# Personal IDE / chatmode tooling — keep out of the repo entirely.
.github/instructions/
.github/chatmodes/
nimble.develop
nimble.paths
# Internal planning docs
docs/plans/
deps/
# Worktree-local symlink to the main repo's deps/ folder, created by
# the worktree setup so nim.cfg's `--path:"deps/unittest2"` resolves.
deps
# Embedded repositories (use as dependencies, not submodules)
nim-typestates/
nim-unittest2/
# Temporary/generated files
logs/
test_typed_introspection*
benchmarks/nim/bench_latency
benchmarks/nim/bench_spsc
benchmarks/nim/bench_mpsc
benchmarks/nim/bench_mpmc
benchmarks/nim/bench_unbounded
# Compiled benchmark test binaries (extensionless executables)
benchmarks/nim/tests/t_*
!benchmarks/nim/tests/t_*.nim
# Compiled stress-test binaries (extensionless executables)
stress-tests/[a-z_]*
!stress-tests/*.nim
# Rust crate build artifacts (FFI bench bridges)
benchmarks/rust/*/target/
benchmarks/rust/*/Cargo.lock