forked from nokonoko1203/claude-code-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
113 lines (113 loc) · 2.92 KB
/
settings.json
File metadata and controls
113 lines (113 loc) · 2.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"cleanupPeriodDays": 20,
"env": {
"DISABLE_TELEMETRY": "1",
"DISABLE_ERROR_REPORTING": "1",
"DISABLE_BUG_COMMAND": "1",
"API_TIMEOUT_MS": "600000",
"DISABLE_AUTOUPDATER": "0",
"CLAUDE_CODE_ENABLE_TELEMETRY": "0",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
},
"permissions": {
"allow": [
"Read(**)",
"Write(src/**)",
"Write(docs/**)",
"Write(**/.tmp/**)",
"Bash(npm install:*)",
"Bash(npm run test:*)",
"Bash(npm run build:*)",
"Bash(pnpm install:*)",
"Bash(pnpm run test:*)",
"Bash(pnpm run build:*)",
"Bash(yarn install:*)",
"Bash(yarn test:*)",
"Bash(yarn build:*)",
"Bash(rm:*)",
"Bash(ls:*)",
"Bash(cat:*:*)",
"Bash(head:*)",
"Bash(tail:*)",
"Bash(pwd:*)",
"Bash(find:*)",
"Bash(tree:*)",
"Bash(mkdir:*)",
"Bash(mv:*)",
"Bash(docker compose up -d --build:*)"
],
"deny": [
"Bash(sudo:*)",
"Bash(git rm:*)",
"Bash(git clean:*)",
"Read(.env.*)",
"Read(id_rsa)",
"Read(id_ed25519)",
"Read(**/*token*)",
"Read(**/*key*)",
"Write(.env*)",
"Write(**/secrets/**)",
"Bash(nc:*)",
"Bash(npm uninstall:*)",
"Bash(npm remove:*)",
]
},
"enableAllProjectMcpServers": true,
"enabledMcpjsonServers": ["context7", "chrome-devtools", "sentry"],
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "\"$HOME/.claude/hooks/block-destructive-git.sh\"",
"timeout": 5
}
]
}
],
"PostToolUse": [
{
"matcher": "Write|Edit|MultiEdit",
"hooks": [
{
"type": "command",
"command": "jq -r '.tool_input.file_path | select(endswith(\".js\") or endswith(\".ts\") or endswith(\".json\") or endswith(\".tsx\"))' | xargs -r npx prettier --write"
}
]
}
],
"Notification": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "cat | jq -r '\"display notification \\\"\" + .message + \"\\\" with title \\\"\" + .title + \"\\\" sound name \\\"Glass\\\"\"' | xargs -I {} osascript -e '{}'"
}
]
}
],
"Stop": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "osascript -e 'display notification \"作業が完了しました。\" with title \"Claude Code\" sound name \"Glass\"'"
}
]
}
]
},
"enabledPlugins": {
"playwright-cli@playwright-cli": true,
"typescript-lsp@claude-plugins-official": true,
"pyright-lsp@claude-plugins-official": true,
"skill-creator@claude-plugins-official": true
},
"language": "Japanese",
"alwaysThinkingEnabled": true
}