-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
96 lines (78 loc) · 1.11 KB
/
.gitignore
File metadata and controls
96 lines (78 loc) · 1.11 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
# Build directories
**/build/
**/cmake-build-*/
**/target/
# Benchmark temp
reports/
**/benchmark/tmp/
# Test data
tests/data/*.bin
tests/.conformance-*/
tests/bench/results/
# Encoded output files
**/*.enc
**/*.out
**/*.huf
**/*.rle
**/*.aenc
**/*.rcnc
# Compiled files
**/*.exe
**/*.o
**/*.a
**/*.so
**/*.d
**/*.dylib
# C++ executables
**/huffman_cpp
**/arithmetic_cpp
**/rle_cpp
**/rangecoder_cpp
# Go executables
**/huffman_go
**/arithmetic_go
**/rangecoder_go
**/rle_go
coverage.out
# Rust executables
**/huffman_rust
**/arithmetic_rust
**/rle_rust
**/huffman_rust_test
**/arithmetic_rust_test
**/rle_rust_test
**/test_lifecycle
# Local environments
.venv/
.omc/
# CMake generated files
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
compile_commands.json
# Python
__pycache__/
**/__pycache__/
.pytest_cache/
# IDE
.idea/
.vscode/
# OS
.DS_Store
Thumbs.db
# Node (VitePress docs)
node_modules/
docs/.vitepress/dist/
docs/.vitepress/cache/
# OpenSpec
.openspec-cache/
# Git worktrees
.worktrees/
# Migration backup (temporary)
specs-backup-*.tar.gz
# Logs & temp
*.log
*.tmp
# BMad Method V6
_bmad/
_bmad-output/