From 8eb42ff2c507a3da846a632579ef9ce2b78d5973 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 14 Jan 2026 14:46:35 -0600 Subject: [PATCH] Install rustfmt in Claude Code for Web (#17475) My post-edit hooks were failing because this was not installed. Co-authored-by: Claude --- .claude/hooks/session-start-web.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.claude/hooks/session-start-web.sh b/.claude/hooks/session-start-web.sh index ff5b93244..6c4430f79 100755 --- a/.claude/hooks/session-start-web.sh +++ b/.claude/hooks/session-start-web.sh @@ -14,3 +14,7 @@ fi if ! command -v cargo-clippy &> /dev/null; then rustup component add clippy fi + +if ! command -v rustfmt &> /dev/null; then + rustup component add rustfmt +fi