2
0
Преглед на файлове

🔧 chore(config): add claude local settings file

- create .claude/settings.local.json with command permissions configuration
- allow common npm scripts for type checking, linting, formatting and testing
- restrict command execution to predefined safe operations only
yourname преди 2 месеца
родител
ревизия
b9edc4d34e
променени са 1 файла, в които са добавени 16 реда и са изтрити 0 реда
  1. 16 0
      .claude/settings.local.json

+ 16 - 0
.claude/settings.local.json

@@ -0,0 +1,16 @@
+{
+  "permissions": {
+    "allow": [
+      "Bash(npm run typecheck)",
+      "Bash(npm run lint)",
+      "Bash(npm run prettier)",
+      "Bash(npx eslint:*)",
+      "Bash(npm run test)",
+      "Bash(npm run build)",
+      "Bash(npm test:*)",
+      "Bash(npx vitest:*)"
+    ],
+    "deny": [],
+    "ask": []
+  }
+}