-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.local.example.json
More file actions
46 lines (46 loc) · 1.05 KB
/
settings.local.example.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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
44
45
46
{
"permissions": {
"allow": [
"WebFetch(domain:docs.example.com)",
"WebSearch"
],
"deny": []
},
"enableAllProjectMcpServers": true,
"enabledMcpjsonServers": [
"context7",
"playwright"
],
"hooks": {
"PreToolUse": [
{
"matcher": "Bash(git commit*)",
"hooks": [
{
"type": "command",
"command": "python C:\\Users\\USERNAME\\.claude\\hooks\\pre-commit\\run-checks.py",
"statusMessage": "Running pre-commit checks..."
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "powershell.exe -ExecutionPolicy Bypass -File C:\\Users\\USERNAME\\.claude\\hooks\\resolvegitissue\\stop-hook.ps1"
}
]
},
{
"hooks": [
{
"type": "command",
"command": "uv run C:\\Users\\USERNAME\\.claude\\hooks\\utils\\tts\\elevenlabs_tts.py \"Yo Ryan, I'm done, ready for more instructions.\""
}
]
}
]
}
}