Просмотр исходного кода

🔧 chore(config): update configuration files

- add "Bash(find:*)" to claude allowed commands for file search operations
- update .gitignore to exclude test artifacts: test-results/, playwright-report/, coverage/
yourname 2 месяцев назад
Родитель
Сommit
ee6f6ff73f
2 измененных файлов с 8 добавлено и 2 удалено
  1. 2 1
      .claude/settings.local.json
  2. 6 1
      .gitignore

+ 2 - 1
.claude/settings.local.json

@@ -5,7 +5,8 @@
       "Bash(pnpm list:*)",
       "Bash(pnpm test:*)",
       "Bash(sed:*)",
-      "Bash(pnpm run lint)"
+      "Bash(pnpm run lint)",
+      "Bash(find:*)"
     ],
     "deny": [],
     "ask": []

+ 6 - 1
.gitignore

@@ -38,4 +38,9 @@ lerna-debug.log*
 .DS_Store
 
 .pnpm-store
-old
+old
+
+# test artifacts
+test-results/
+playwright-report/
+coverage/