fix: Fix comment style issues

This commit is contained in:
Yufei Li 2026-04-27 15:21:45 +08:00
parent 47eaa84be9
commit b632b12ac9

View File

@ -1,29 +1,53 @@
# Build System Artifacts
_build/ # MoonBit default build output directory.
.mooncakes/ # Local MoonBit package cache directory.
# MoonBit default build output directory.
_build/
# Local MoonBit package cache directory.
.mooncakes/
# Coverage and Test Artifacts
moonbit-coverage-*.txt # Coverage reports generated by MoonBit tooling.
_coverage # Coverage output directory used by coverage commands.
bisect.coverage # Bisect runtime coverage data file.
# Coverage reports generated by MoonBit tooling.
moonbit-coverage-*.txt
# Coverage output directory used by coverage commands.
_coverage/
# Bisect runtime coverage data file.
bisect.coverage
# 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.
# Uncomment if generated JavaScript should be ignored.
# *.js
# Source map files generated for JavaScript output.
*.js.map
# Node.js dependencies used in JS target workflows.
node_modules/
# WebAssembly Target Artifacts
*.wasm # Compiled WebAssembly binaries.
*.wat # WebAssembly text format output.
# Compiled WebAssembly binaries.
*.wasm
# WebAssembly text format output.
*.wat
# MoonBit Pilot / Agent Artifacts
.moonagent/ # MoonBit agent runtime state and temporary files.
# MoonBit agent runtime state and temporary files.
.moonagent/
# 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.
# LLVM textual intermediate representation (IR) files.
*.ll
# LLVM bitcode files.
*.bc
# Native object files from LLVM/native compilation.
*.o
# Generated assembly source files.
*.s
# Default executable output name on Unix-like systems.
*.out
# Native executable output on Windows.
*.exe
# macOS debug symbol bundles.
*.dSYM/