From 84bb10234e7456632bee0e0846c0e903563682c2 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 15 Apr 2026 10:04:16 +0200 Subject: [PATCH] chore(config): allow cargo clippy and ruff check in Bash permissions Both lint tools are used during pr-review pre-flight checks. Adding them alongside the existing cargo check / test / build entries avoids permission prompts during the review cycle. Co-Authored-By: Claude Opus 4.6 (1M context) --- .claude/settings.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.claude/settings.json b/.claude/settings.json index ef204f3b3..66794950e 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -52,6 +52,10 @@ "Bash(cargo build)", "Bash(cargo check *)", "Bash(cargo check)", + "Bash(cargo clippy *)", + "Bash(cargo clippy)", + "Bash(ruff check *)", + "Bash(ruff check)", "Bash(tests/run-*)", "Bash(chmod *)",