-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
101 lines (88 loc) · 1.95 KB
/
.gitignore
File metadata and controls
101 lines (88 loc) · 1.95 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Binaries
*.exe
*.exe~
*.dll
*.so
*.dylib
# Compiled output — extensionless ELF binaries produced by `nim c`
# These match the pattern: same name as a .nim file but without the extension
src/private/channel_spsc
src/private/atomic_helpers
examples/hello/main
examples/structured_concurrency/main
examples/*/main
tests/simple_runner
tests/run_tests
tests/support/simple_runner
tests/support/async_test_framework
tests/support/progress
tests/unit/test_*
!tests/unit/test_*.nim
tests/unit/cancel/test_*
!tests/unit/cancel/test_*.nim
tests/unit/channels/test_*
!tests/unit/channels/test_*.nim
tests/unit/groups/test_*
!tests/unit/groups/test_*.nim
tests/integration/test_*
!tests/integration/test_*.nim
tests/performance/benchmark_*
!tests/performance/benchmark_*.nim
!tests/performance/*.sh
!tests/performance/*.md
tests/benchmarks/stress_tests/*
!tests/benchmarks/stress_tests/*.nim
!tests/benchmarks/stress_tests/*.md
!tests/benchmarks/stress_tests/Makefile
tests/smoke/*
!tests/smoke/*.nim
tests/e2e/test_*
!tests/e2e/test_*.nim
tests/scenarios/*
!tests/scenarios/*.nim
# Benchmark results
benchmark_results_*/
# Nim cache
nimcache/
.nimcache/
# Performance benchmarks
benchmarks/results/*/summary.md
benchmarks/reports/benchmark_results_*.csv
benchmarks/reports/benchmark_summary_*.md
tests/benchmarks/logs/*.log
tests/benchmarks/results/**/*.md
tests/benchmarks/results/**/*.txt
tests/benchmarks/reports/*.csv
!tests/benchmarks/reports/performance_report_v*.md
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Temporary files
*.tmp
*.bak
# Generated documentation
src/htmldocs/
# Internal roadmap
ROADMAP_v1.0.md
claude.md
# Claude Code context (local only)
CLAUDE.md
# Development/internal files
STATUS_INTERNAL.md
ROADMAP*.md
SUPPORT.md
BENCHMARK_RESULTS_FOR_NIM_CREATOR.md
# Internal/personal documentation (not for repo)
CLAUDE.md
STATUS_INTERNAL.md
ROADMAP_v1.0.md
BENCHMARK_RESULTS_FOR_NIM_CREATOR.md
tests/unit/channels/test_mpsc_channel