-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (76 loc) · 1.48 KB
/
Copy path.gitignore
File metadata and controls
91 lines (76 loc) · 1.48 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
# Rust build output
target/
Cargo.lock
# CMake build artifacts
build/
**/build/CMakeCache.txt
**/build/CMakeFiles/
**/build/Makefile
**/build/cmake_install.cmake
**/build/*.cmake
**/build/*.so
**/build/*.o
# pybind11 extension modules
**/*.cpython-*.so
# Golden test diff artifacts
**/golden/*.diff.ir
# Mimi compiled executables and object files
*.o
examples/*
demos/*
!examples/*.mimi
!demos/*.mimi
projects/*/src/main
projects/*/main
tests/real_world/*_mimi
!tests/real_world/*.mimi
!tests/real_world/*.py
!tests/real_world/*.md
# Transient null rlib produced by LLVM/no_std experiments
libnull.rlib
# Python
__pycache__/
*.pyc
*.pyo
# Editor temp files
*.swp
*.swo
*~
.*.swp
# IDE
.vscode/
.idea/
# OS artifacts
.DS_Store
Thumbs.db
# Environment
.env
.env.local
# Internal development docs (not for public)
AGENTS.md
AGENTS_ANCHOR_*.md
devdocs/
# Reference projects
references/
# Agent workspace
.mimocode/
.qoder/
.zcode/
# Local LLVM wrapper (canonical location is /tmp/llvm-wrapper; workspace copy
# used when /tmp does not persist, e.g. sandboxed agent shells)
.llvm-wrapper/
# Real-world suite generated binaries (kept by .mimi sources/scripts/docs)
tests/real_world/**/*
!tests/real_world/**/*.mimi
!tests/real_world/**/*.py
!tests/real_world/**/*.md
!tests/real_world/**/*.toml
!tests/real_world/projects/
!tests/real_world/projects/*/
!tests/real_world/projects/*/*.mimi
!tests/real_world/projects/*/*.toml
!/main
/main
docs/compose/
# Free-form development scratch buffer
.freebuff/