-
Notifications
You must be signed in to change notification settings - Fork 82.6k
Add .gitignore for MoonBit #4846
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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. | ||||||
|
||||||
| moonbit-coverage-*.txt # Coverage reports generated by MoonBit tooling. | |
| moonbit-coverage-*.txt # Coverage reports generated by MoonBit tooling. |
Copilot
AI
Apr 20, 2026
There was a problem hiding this comment.
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/).
| _coverage # Coverage output directory used by coverage commands. | |
| _coverage/ # Coverage output directory used by coverage commands. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing comments like these are not supported in gitignore files (syntax docs for reference). I'd recommend removing the comments or putting them on their own lines like this: