Skip to content

Commit ebd041a

Browse files
hitode909claude
andcommitted
Add Claude Code permissions configuration
Enable automatic approval for common development commands including: - npm operations (test, build, install, etc.) - git operations (add, stash) - GitHub CLI operations (pr, run view) - Development tools (lint, format, audit) This improves development workflow by reducing manual confirmations for safe, commonly-used commands. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 17fcff3 commit ebd041a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.claude/settings.local.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(npm test)",
5+
"Bash(npm test:*)",
6+
"Bash(npm run fix:*)",
7+
"Bash(git add:*)",
8+
"Bash(npm outdated)",
9+
"Bash(npm audit:*)",
10+
"Bash(npm uninstall:*)",
11+
"Bash(rm:*)",
12+
"Bash(npm install:*)",
13+
"Bash(npm run compile:*)",
14+
"Bash(touch:*)",
15+
"Bash(npm run build:*)",
16+
"Bash(npm run lint)",
17+
"Bash(npm run format:check:*)",
18+
"Bash(npm run format:*)",
19+
"Bash(npm run ci:*)",
20+
"Bash(npm view:*)",
21+
"Bash(find:*)",
22+
"Bash(gh pr:*)",
23+
"Bash(gh issue view:*)",
24+
"Bash(git stash:*)",
25+
"Bash(gh run list:*)",
26+
"Bash(gh run view:*)",
27+
"Bash(gh pr view:*)",
28+
"Bash(gh pr diff:*)"
29+
],
30+
"deny": [],
31+
"ask": []
32+
}
33+
}

0 commit comments

Comments
 (0)