From ea978df888d9b8ebe7118263246546ea02beb3fb Mon Sep 17 00:00:00 2001 From: toyamagu-2021 <83329336+toyamagu-2021@users.noreply.github.com> Date: Wed, 2 Jul 2025 13:05:05 +0900 Subject: [PATCH] docs: add linter to CONTRIBUTING.md (#3168) Signed-off-by: toyamagu-2021 --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 69656f22..15f9f146 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,11 +44,13 @@ And then once you have a connection to an LLM provider working, you can run a se ``` These same commands can be recompiled and immediately run using `cargo run -p goose-cli` for iteration. -As you make changes to the rust code, you can try it out on the CLI, or also run checks and tests: +As you make changes to the rust code, you can try it out on the CLI, or also run checks, tests, and linter: ``` cargo check # do your changes compile -cargo test # do the tests pass with your changes. +cargo test # do the tests pass with your changes +cargo fmt # format your code +cargo clippy # run the linter ``` ### Node