Compare commits

...

7 Commits

Author SHA1 Message Date
Abraham Ebijuni
d90cbb776d
Merge 74f147ee17 into 1046d8fba6 2026-04-27 22:15:04 +00:00
Devin Dooley
1046d8fba6
Merge pull request #4846 from yufeiminds/main
Add .gitignore for MoonBit
2026-04-27 09:16:09 -07:00
Yufei Li
b632b12ac9 fix: Fix comment style issues 2026-04-27 15:21:45 +08:00
Yufei LI
47eaa84be9 fix: Remove bin 2026-04-20 01:14:53 +08:00
Yufei LI
4a96a23dfd fix: Remove deprecated folder and logs 2026-04-20 01:01:50 +08:00
Yufei LI
071d8034a4 Add .gitignore for MoonBit 2026-04-20 00:31:16 +08:00
Abraham Ebijuni
74f147ee17
Add Daml.gitignore template 2025-10-14 07:21:43 +01:00
2 changed files with 98 additions and 0 deletions

45
Daml.gitignore Normal file
View File

@ -0,0 +1,45 @@
# Daml.gitignore
# Recommended .gitignore template for Daml (Digital Asset Modelling Language) projects.
# Website: https://www.digitalasset.com/developers
# Documentation: https://docs.daml.com
# === Daml build artefacts ===
.daml/
.daml/dist/
.daml/state/
.daml/package-database/
.daml/ledger/
.daml/dependencies/
.daml/deploy/
# === Sandbox / JSON API logs & state ===
sandbox.log
json-api.log
navigator.log
sandbox-state/
ledger-state/
# === IDE / Editor junk ===
.idea/
.vscode/
*.iml
*.swp
*~
# === OS / Misc ===
.DS_Store
Thumbs.db
# === Environment & credentials ===
.env
*.jwt
*.pem
*.key
*.crt
# === Temporary files ===
tmp/
logs/
*.log
*.bak
*.tmp

53
MoonBit.gitignore Normal file
View File

@ -0,0 +1,53 @@
# Build System Artifacts
# MoonBit default build output directory.
_build/
# Local MoonBit package cache directory.
.mooncakes/
# Coverage and Test Artifacts
# 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
# 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
# Compiled WebAssembly binaries.
*.wasm
# WebAssembly text format output.
*.wat
# MoonBit Pilot / Agent Artifacts
# MoonBit agent runtime state and temporary files.
.moonagent/
# LLVM Backend Artifacts
# 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/