-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathclaude-settings-template.json
More file actions
58 lines (58 loc) · 1.07 KB
/
claude-settings-template.json
File metadata and controls
58 lines (58 loc) · 1.07 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
{
"permissions": {
"allow": [
"Read(**)",
"Edit(**)",
"Write(**)",
"Bash(**)",
"Search(**)",
"Grep(**)",
"Find(**)",
"List(**)",
"Glob(**)"
],
"preApprovedCommands": [
"echo COMPLETED > /tmp/splitmind-status/*.status",
"npm install",
"npm run build",
"npm run dev",
"npm run test",
"npm run lint",
"npm run typecheck",
"pnpm install",
"pnpm build",
"pnpm dev",
"pnpm test",
"pnpm lint",
"pnpm typecheck",
"yarn install",
"yarn build",
"yarn dev",
"yarn test",
"yarn lint",
"git add .",
"git commit -m *",
"git status",
"git diff",
"git log",
"git branch",
"git checkout *",
"rg *",
"find . -name *",
"grep -r * .",
"ls -la",
"pwd",
"cd *",
"mkdir -p *",
"touch *",
"rm -f *",
"cp * *",
"mv * *"
]
},
"preferences": {
"autoCommit": false,
"commitPrefix": "feat: ",
"testBeforeCommit": true
}
}