From 6b74cbe84fec51955c09f51dda8d2e87bf88c4cf Mon Sep 17 00:00:00 2001 From: Michael Uloth Date: Mon, 18 May 2026 05:05:40 +0000 Subject: [PATCH] fix(CONTRIBUTING): correct just check comment to reflect fmt + lint behavior MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The inline comment described `just check` as "verify workspace compiles" but the recipe actually runs taplo fmt, taplo check, cargo fmt, and cargo clippy --fix — formatting and linting with autofixes, not a compile check. Closes #63 https://claude.ai/code/session_01JXbwWw7vxy9GW3wSh9Swi3 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b4e5f2c..1d37e76 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,7 +51,7 @@ for the full model, how to add new devices, and how to add new private workflows ## Running ```bash -just check # verify workspace compiles +just check # fmt + lint (autofixes where possible) just status # run with secrets injected ```