-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
85 lines (85 loc) · 1.89 KB
/
settings.json
File metadata and controls
85 lines (85 loc) · 1.89 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
{
"permissions": {
"allow": [
"Bash(cat:*)",
"Bash(ls:*)",
"Bash(head:*)",
"Bash(tail:*)",
"Bash(wc:*)",
"Bash(grep:*)",
"Bash(find:*)",
"Bash(sed:*)",
"Bash(awk:*)",
"Bash(sort:*)",
"Bash(uniq:*)",
"Bash(mkdir:*)",
"Bash(cp:*)",
"Bash(mv:*)",
"Bash(rm:*.pyc)",
"Bash(rm:*__pycache__*)",
"Bash(python:scripts/*)",
"Bash(python:-c *)",
"Bash(python:-m pytest*)",
"Bash(python:-m http.server*)",
"Bash(pip:install *)",
"Bash(pip:list*)",
"Bash(git:status*)",
"Bash(git:diff*)",
"Bash(git:add *)",
"Bash(git:commit *)",
"Bash(git:log*)",
"Bash(git:branch*)",
"Bash(npm:run *)",
"Bash(npm:install*)",
"Bash(echo:*)",
"Bash(touch:*)",
"Bash(chmod:*)",
"Read(*)",
"Write(paper/*)",
"Write(scripts/*)",
"Write(data/*)",
"Write(docs/*)",
"Write(.claude/*)",
"Write(README.md)",
"Write(*.py)",
"Write(*.md)",
"Write(*.json)",
"Write(*.html)",
"Write(*.css)",
"Write(*.js)"
],
"deny": [
"Bash(rm:-rf *)",
"Bash(sudo:*)",
"Bash(chmod:777 *)",
"Write(/etc/*)",
"Write(/usr/*)",
"Write(~/.ssh/*)"
]
},
"preferences": {
"autoAcceptEdits": true,
"compactMode": false,
"verboseToolCalls": false,
"maxTurnsWithoutConfirmation": 25
},
"context": {
"alwaysInclude": [
".claude/CLAUDE.md"
],
"ignorePatterns": [
"node_modules/**",
"__pycache__/**",
"*.pyc",
".git/**",
"data/processed/**"
]
},
"project": {
"name": "Cricket Anthropometric Research",
"type": "research-paper",
"primaryLanguage": "python",
"secondaryLanguages": ["markdown", "html", "javascript"],
"outputFormats": ["markdown", "pdf", "github-pages"]
}
}