From eec2986921fc3a5e978d77e4fc8c35f31fab870a Mon Sep 17 00:00:00 2001 From: Oleh Omelchenko Date: Fri, 5 Jun 2026 02:28:42 +0300 Subject: [PATCH] Allow typecheck/test/lint commands without permission prompts --- .claude/settings.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..efed9b2 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,12 @@ +{ + "permissions": { + "allow": [ + "Bash(npm run typecheck)", + "Bash(npm run typecheck *)", + "Bash(npm test)", + "Bash(npm test *)", + "Bash(npm run lint)", + "Bash(npm run lint *)" + ] + } +}