Skip to content

Commit 1046d8f

Browse files
authored
Merge pull request #4846 from yufeiminds/main
Add .gitignore for MoonBit
2 parents 5763345 + b632b12 commit 1046d8f

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

MoonBit.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Build System Artifacts
2+
3+
# MoonBit default build output directory.
4+
_build/
5+
# Local MoonBit package cache directory.
6+
.mooncakes/
7+
8+
# Coverage and Test Artifacts
9+
10+
# Coverage reports generated by MoonBit tooling.
11+
moonbit-coverage-*.txt
12+
# Coverage output directory used by coverage commands.
13+
_coverage/
14+
# Bisect runtime coverage data file.
15+
bisect.coverage
16+
17+
# JavaScript Target Artifacts
18+
19+
# Uncomment if generated JavaScript should be ignored.
20+
# *.js
21+
# Source map files generated for JavaScript output.
22+
*.js.map
23+
# Node.js dependencies used in JS target workflows.
24+
node_modules/
25+
26+
# WebAssembly Target Artifacts
27+
28+
# Compiled WebAssembly binaries.
29+
*.wasm
30+
# WebAssembly text format output.
31+
*.wat
32+
33+
# MoonBit Pilot / Agent Artifacts
34+
35+
# MoonBit agent runtime state and temporary files.
36+
.moonagent/
37+
38+
# LLVM Backend Artifacts
39+
40+
# LLVM textual intermediate representation (IR) files.
41+
*.ll
42+
# LLVM bitcode files.
43+
*.bc
44+
# Native object files from LLVM/native compilation.
45+
*.o
46+
# Generated assembly source files.
47+
*.s
48+
# Default executable output name on Unix-like systems.
49+
*.out
50+
# Native executable output on Windows.
51+
*.exe
52+
# macOS debug symbol bundles.
53+
*.dSYM/

0 commit comments

Comments
 (0)