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 4 месяцев назад
Родитель
Сommit
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": []
+  }
+}