-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
64 lines (61 loc) · 1.63 KB
/
Copy path.coderabbit.yaml
File metadata and controls
64 lines (61 loc) · 1.63 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
language: "en-US"
tone_instructions: "Be direct and concise. No fluff."
reviews:
profile: "chill"
high_level_summary: true
collapse_walkthrough: true
poem: false
sequence_diagrams: false
suggested_reviewers: false
auto_review:
enabled: true
drafts: false
ignore_title_keywords:
- "WIP"
- "DO NOT REVIEW"
path_filters:
- "!dist/**"
- "!**/__pycache__/**"
- "!**/*.pyc"
- "!alembic/versions/**"
path_instructions:
- path: "src/**"
instructions: |
Check for proper async/await usage and connection cleanup.
Verify Telegram API calls handle rate limits and session expiry.
Ensure no PII or message content is logged.
- path: "src/database/**"
instructions: |
Verify SQL queries are parameterized (no string interpolation).
Check for proper connection pooling and transaction handling.
- path: "Dockerfile*"
instructions: |
Verify multi-stage builds are used. Check for non-root USER.
Ensure base image tags are pinned, not :latest.
- path: "docker-compose*.yml"
instructions: |
Check that sensitive values use environment variables, not hardcoded.
Verify volume mounts use bind mounts for Unraid compatibility.
tools:
gitleaks:
enabled: true
hadolint:
enabled: true
actionlint:
enabled: true
yamllint:
enabled: true
markdownlint:
enabled: true
shellcheck:
enabled: true
chat:
auto_reply: true
knowledge_base:
learnings:
scope: "local"
code_guidelines:
enabled: true
filePatterns:
- "CLAUDE.md"
- "CLAUDE.md"