From a9fb3285840ea89397eb68ce099bb750a3f44622 Mon Sep 17 00:00:00 2001 From: Kjell Tore Guttormsen Date: Sun, 19 Apr 2026 22:29:46 +0200 Subject: [PATCH] fix(config-audit): complete conflict-project fixture for CNF cross-scope tests --- .../conflict-project/.claude/settings.local.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 plugins/config-audit/tests/fixtures/conflict-project/.claude/settings.local.json diff --git a/plugins/config-audit/tests/fixtures/conflict-project/.claude/settings.local.json b/plugins/config-audit/tests/fixtures/conflict-project/.claude/settings.local.json new file mode 100644 index 0000000..ff450bb --- /dev/null +++ b/plugins/config-audit/tests/fixtures/conflict-project/.claude/settings.local.json @@ -0,0 +1,16 @@ +{ + "model": "claude-opus-4-7", + "effortLevel": "minimal", + "permissions": { + "allow": ["Write(tmp/**)"], + "deny": ["Bash(npm run *)"] + }, + "hooks": { + "PreToolUse": [ + { + "matcher": "Bash", + "hooks": [{ "type": "command", "command": "echo local-hook" }] + } + ] + } +}