-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
68 lines (65 loc) · 1.86 KB
/
.coderabbit.yaml
File metadata and controls
68 lines (65 loc) · 1.86 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
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/**"
- "!**/node_modules/**"
- "!**/__pycache__/**"
- "!**/*.pyc"
path_instructions:
- path: "app/**"
instructions: |
Check for proper error handling and logging.
Verify Docker API calls have timeouts and handle container failures gracefully.
Ensure sensitive data (API keys, tokens) is never logged or exposed.
- path: "app/services/**"
instructions: |
Verify each bandwidth-sharing service integration handles auth failures and rate limits.
Check that earnings parsing is robust against upstream format changes.
- 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 or secrets, not hardcoded.
Verify volume mounts use bind mounts (not named volumes) for Unraid compatibility.
- path: "alembic/**"
instructions: |
Check migration is reversible (has downgrade).
Verify no data loss in schema changes.
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:
- "AGENTS.md"
- "CLAUDE.md"