-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcoderabbit.yaml
More file actions
40 lines (36 loc) · 955 Bytes
/
coderabbit.yaml
File metadata and controls
40 lines (36 loc) · 955 Bytes
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
# .coderabbit.yaml
language: "en-US"
reviews:
# Enable or disable reviews
enabled: true
# Review profile: chill, default, strict, or assertive
profile: "default"
# Request changes workflow
request_changes_workflow: false
# High-level summary in PR description
high_level_summary: true
# Add walkthrough comment
poem: false
# Review status comment
review_status: true
# Collapse walkthrough below this many files
collapse_walkthrough: 10
# Auto-review on push
auto_review:
enabled: true
drafts: false
chat:
# Enable or disable chat
enabled: true
auto_reply: true
# Path-based instructions
path_instructions:
- path: "src/**/*.ts"
instructions: "Focus on TypeScript best practices and type safety"
- path: "**/*.test.ts"
instructions: "Ensure tests are comprehensive and follow testing patterns"
# Files/paths to ignore
path_filters:
- "!**/*.lock"
- "!**/dist/**"
- "!**/node_modules/**"