From b1245a714d9cff113d3edf2c69fdf4e4499cbb27 Mon Sep 17 00:00:00 2001 From: Jess Izen Date: Mon, 11 May 2026 18:31:11 +0000 Subject: [PATCH] feat(rust): recommend running cargo clippy in best practices --- rust/rust-best-practice/SKILL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/rust-best-practice/SKILL.md b/rust/rust-best-practice/SKILL.md index 5fc6b63..e4b078a 100644 --- a/rust/rust-best-practice/SKILL.md +++ b/rust/rust-best-practice/SKILL.md @@ -8,4 +8,5 @@ description: "[Critical] Best practice for Rust coding. Always activate this ski * Use `cargo add` to add new dependencies or features rather than editing `Cargo.toml` directly * Before finishing your turn, when editing Rust code: * Run `cargo fmt` after modifying Rust source files to ensure consistent formatting + * Run `cargo clippy --all --workspace` and fix any warnings * Run tests (most commonly `cargo test --all --workspace`, though some projects may have other commands)