-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json.example
More file actions
70 lines (70 loc) · 1.66 KB
/
settings.json.example
File metadata and controls
70 lines (70 loc) · 1.66 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
{
"model": "sonnet",
"statusLine": {
"type": "command",
"command": "bash ~/.claude/statusline.sh"
},
"cleanupPeriodDays": 365,
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
"CLAUDE_CODE_MAX_OUTPUT_TOKENS": "65536",
"BASH_DEFAULT_TIMEOUT_MS": "300000",
"BASH_MAX_TIMEOUT_MS": "600000",
"BASH_MAX_OUTPUT_LENGTH": "100000",
"CLAUDE_AUTOCOMPACT_PCT_OVERRIDE": "80",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
"CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR": "1",
"MAX_MCP_OUTPUT_TOKENS": "50000",
"DISABLE_COST_WARNINGS": "1",
"CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY": "1"
},
"hooks": {
"PreToolUse": [
{
"matcher": "Write|Edit|MultiEdit|Bash",
"hooks": [
{
"type": "command",
"command": "python3 ~/.claude/hooks/block-unicode-dashes.py"
}
]
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "python3 ~/.claude/hooks/block-co-authored-by.py"
}
]
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "python3 ~/.claude/hooks/block-git-stash.py"
}
]
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "python3 ~/.claude/hooks/block-no-verify.py"
}
]
},
{
"matcher": "Write|Bash",
"hooks": [
{
"type": "command",
"command": "python3 ~/.claude/hooks/block-tmp-files.py"
}
]
}
]
}
}