Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
- Always run `cargo fmt --all -- --check`, `cargo clippy --all-targets --all-features -- -D warnings`, and `cargo nextest run --all` before committing.
Sign in to like and favorite skills
cargo fmt --all -- --check, cargo clippy --all-targets --all-features -- -D warnings, and cargo nextest run --all before committing.src/ modules within #[cfg(test)] blocks.tests/ directory is reserved for integration tests that rely on the
public crate API.migrations/ directory up to date whenever the database schema changes so that embedded migrations remain in sync.CHANGELOG.md only for user-visible changes. Internal CI and tooling updates should not be listed. Keep pending changes under a ## Unreleased section as a numbered list. Only create a new ## [version] - <date> heading when a release commit is prepared. After adding the version heading, continue the next list under Unreleased.## Unreleased section in CHANGELOG.md. The manifest version may show an unreleased patch (e.g., 0.3.1), but the changes remain under Unreleased until the release commit is prepared.name.rs file alongside a
name/ directory for submodules instead of using mod.rs.