-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.json
More file actions
45 lines (45 loc) · 1.02 KB
/
settings.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"language": "korean",
"permissions": {
"allow": [
"Bash(pnpm *)",
"Bash(git status*)",
"Bash(git diff*)",
"Bash(git log*)",
"Bash(git branch*)",
"Bash(git checkout*)",
"Bash(ls*)",
"Edit",
"Write",
"Read"
],
"ask": ["Bash(git push*)", "Bash(git commit*)", "Bash(git reset*)", "Bash(rm *)"],
"deny": []
},
"enabledPlugins": {
"codex@openai-codex": true
},
"availableModels": ["sonnet", "opus"],
"sandbox": {
"network": {
"allowLocalBinding": true,
"allowedDomains": ["registry.npmjs.org", "npm.pkg.github.com"]
}
},
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "pnpm biome check --write --unsafe $CLAUDE_FILE_PATHS",
"timeout": 10,
"statusMessage": "Biome 포맷팅 중..."
}
]
}
]
}
}