Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions MoonBit.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Build System Artifacts
_build/ # MoonBit default build output directory.
.mooncakes/ # Local MoonBit package cache directory.

# Coverage and Test Artifacts
moonbit-coverage-*.txt # Coverage reports generated by MoonBit tooling.
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

moonbit-coverage-*.txt has the inline comment starting immediately after the pattern, while the surrounding entries align comments for readability. Consider adding spacing before # (or moving the explanation to its own comment line) to keep formatting consistent within the template.

Suggested change
moonbit-coverage-*.txt # Coverage reports generated by MoonBit tooling.
moonbit-coverage-*.txt # Coverage reports generated by MoonBit tooling.

Copilot uses AI. Check for mistakes.
_coverage # Coverage output directory used by coverage commands.
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_coverage is described as an output directory; consider using _coverage/ to make the pattern explicitly directory-scoped and consistent with other directory entries in this template (e.g., _build/, .mooncakes/, node_modules/).

Suggested change
_coverage # Coverage output directory used by coverage commands.
_coverage/ # Coverage output directory used by coverage commands.

Copilot uses AI. Check for mistakes.
bisect.coverage # Bisect runtime coverage data file.

# JavaScript Target Artifacts
# *.js # Uncomment if generated JavaScript should be ignored.
*.js.map # Source map files generated for JavaScript output.
node_modules/ # Node.js dependencies used in JS target workflows.

# WebAssembly Target Artifacts
*.wasm # Compiled WebAssembly binaries.
*.wat # WebAssembly text format output.

# MoonBit Pilot / Agent Artifacts
.moonagent/ # MoonBit agent runtime state and temporary files.

# LLVM Backend Artifacts
*.ll # LLVM textual intermediate representation (IR) files.
*.bc # LLVM bitcode files.
*.o # Native object files from LLVM/native compilation.
*.s # Generated assembly source files.
*.out # Default executable output name on Unix-like systems.
*.exe # Native executable output on Windows.
*.dSYM/ # macOS debug symbol bundles.
Loading