From a0e473a87bda50f6c29ab5fa9732586e2bc570e4 Mon Sep 17 00:00:00 2001 From: Maciej Bielecki Date: Mon, 9 Mar 2026 12:22:38 +0000 Subject: [PATCH 1/2] Add additional Bash commands to settings.local.json - Added "Bash(git show:*)" to allow showing commit details. - Added "Bash(ls:*)" to enable listing directory contents. - Added "Bash(SKIP_SLOW_TESTS=1 SKIP_S3_TESTS=1 stack test:*)" to facilitate running tests while skipping slow and S3 tests. --- .claude/settings.local.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 9728c8d..9306642 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -11,9 +11,12 @@ "Bash(mkdir:*)", "Bash(git rev-parse:*)", "Bash(git remote get-url:*)", - "Bash(git rebase:*)" + "Bash(git rebase:*)", + "Bash(git show:*)", + "Bash(ls:*)", + "Bash(SKIP_SLOW_TESTS=1 SKIP_S3_TESTS=1 stack test:*)" ], "deny": [], "ask": [] } -} \ No newline at end of file +} From 5b9746d31e9da76c386fdc5809397f3b35389555 Mon Sep 17 00:00:00 2001 From: Maciej Bielecki Date: Mon, 9 Mar 2026 16:36:37 +0000 Subject: [PATCH 2/2] Add .claude/worktrees/ to .gitignore - Updated .gitignore to exclude the .claude/worktrees/ directory from being tracked by Git, alongside existing entries for ghtest-env, .aider*, and thoughts/. This prevents cluttering the repository with local environment and temporary files. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7d5baf2..3bb26a6 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ ghtest-env .aider* thoughts/ +.claude/worktrees/