-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
43 lines (43 loc) · 932 Bytes
/
Copy pathsettings.json
File metadata and controls
43 lines (43 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"permissions": {
"allow": [
"Bash(bun run build:*)",
"Bash(bun run test:*)",
"Bash(bun run typecheck:*)",
"Bash(bun run lint:*)",
"Bash(bun install:*)",
"Bash(git status:*)",
"Bash(git diff:*)",
"Bash(git log:*)"
],
"ask": [
"Bash(git push:*)",
"Bash(cargo publish:*)",
"Bash(npm publish:*)",
"Bash(bun publish:*)",
"Bash(docker push:*)",
"Bash(gh pr merge:*)",
"Bash(gh release:*)",
"Bash(aws:*)",
"Bash(gcloud:*)",
"Bash(az:*)",
"Bash(kubectl:*)",
"Bash(helm:*)",
"Bash(terraform:*)",
"Bash(flyctl:*)"
]
},
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "bash \"$CLAUDE_PROJECT_DIR/.claude/hooks/ask-before-risky-commands.sh\""
}
]
}
]
}
}