-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai-review-config.json.example
More file actions
48 lines (48 loc) · 1.07 KB
/
ai-review-config.json.example
File metadata and controls
48 lines (48 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
{
"ai": {
"provider": "openai",
"model": "gpt-4",
"persona": "senior-engineer",
"customPersonas": {
"code-reviewer": "You are an expert code reviewer focusing on clean code principles, SOLID design, and modern best practices.",
"team-lead": "You are a technical team lead reviewing code for architectural decisions and team standards compliance."
}
},
"processing": {
"maxFileSize": 1048576,
"chunkSize": 50000,
"excludePatterns": [
"node_modules/**",
"build/**",
"dist/**",
"*.min.js",
"*.lock",
"DerivedData/**",
".gradle/**",
"Pods/**",
"Carthage/**",
"xcuserdata/**",
"*.xcuserdatad/**",
"*.iml",
".dart_tool/**",
"platforms/**",
"plugins/**",
"__pycache__/**",
"*.pyc",
"target/**",
"*.class",
"[Bb]in/**",
"[Oo]bj/**",
"*.exe",
"vendor/**",
".next/**",
".nuxt/**",
"out/**",
".cache/**",
".bundle/**",
"tmp/**",
"log/**"
]
},
"author": "BugBeaver"
}