-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
67 lines (54 loc) · 1.55 KB
/
.coderabbit.yaml
File metadata and controls
67 lines (54 loc) · 1.55 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
# CodeRabbit Configuration
# Documentation: https://docs.coderabbit.ai/configuration
language: en-US
# Review settings
reviews:
# Enable automatic reviews on PRs
auto_review:
enabled: true
# Review drafts too
drafts: false
# Base branches to review
base_branches:
- main
- develop
# Review profile - assertive for thorough reviews
profile: assertive
# Request changes instead of just commenting when issues found
request_changes_workflow: true
# High-level summary at the top of review
high_level_summary: true
# Add poem to reviews (fun touch)
poem: false
# Review scope
path_filters:
# Always review these
- "src/**"
- "docs/**"
- ".github/**"
# Ignore these
- "!**/node_modules/**"
- "!**/dist/**"
- "!**/*.lock"
- "!**/pnpm-lock.yaml"
- "!**/package-lock.json"
# Collapse walkthrough for large PRs
collapse_walkthrough: true
# Enable sequence diagrams for complex flows
sequence_diagrams: true
# Chat settings for interacting with CodeRabbit
chat:
# Enable chat commands in PR comments
auto_reply: true
# Early access features
early_access: true
# Knowledge base for project context
knowledge_base:
# Learn from merged PRs
learnings:
scope: auto
# Learn from repo issues
issues:
scope: auto
# Tone and style instructions (max 250 chars)
tone_instructions: "Be constructive. Focus on security (OWASP), TypeScript best practices, performance, and test coverage. This is a CLI tool - check for credential handling, path traversal, proper exit codes."