-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
55 lines (50 loc) · 2.08 KB
/
Copy path.coderabbit.yaml
File metadata and controls
55 lines (50 loc) · 2.08 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
# CodeRabbit config for MMLib.Alvo — a solo-maintained, pre-v1, Apache-2.0
# .NET Backend-as-a-Service framework. Keep this lean; revisit once the repo
# has external contributors or security-critical modules (auth/RBAC/secrets)
# actually land. Validated against the schema at
# https://storage.googleapis.com/coderabbit_public_assets/schema.v2.json —
# it is strict: unknown top-level keys AND over-length values are fatal
# (CodeRabbit silently falls back to defaults). Notably tone_instructions
# has a 250-char cap — keep detailed rules in reviews.path_instructions.
language: "en-US"
# Tone only (250-char cap). The concrete rules live in path_instructions below.
tone_instructions: >-
Solo-maintained, pre-v1 .NET BaaS framework. Be direct and concise, no
filler praise. Prioritize correctness and security (auth, RBAC, secrets,
multi-tenant isolation, injection, SSRF) over style nitpicks.
reviews:
profile: "chill"
request_changes_workflow: false
high_level_summary: true
collapse_walkthrough: true
auto_review:
enabled: true
path_filters:
- "!**/bin/**"
- "!**/obj/**"
- "!**/*.png"
- "!**/*.svg"
- "!docs/superpowers/**"
path_instructions:
- path: "**/*.cs"
instructions: >
Comments must explain *why*, not *what* — flag any comment that
narrates obvious behavior. Public API members (public types,
methods, properties) in ports/core library projects require XML
doc comments (`/// <summary>`). Flag any use of MediatR or
FluentAssertions v8+; this project uses Shouldly for assertions.
- path: "**/*.csproj"
instructions: >
No PackageReference should carry an inline Version attribute —
this repo uses Central Package Management (ManagePackageVersionsCentrally),
all versions belong in Directory.Packages.props.
- path: "**/*.Tests/**/*.cs"
instructions: >
Tests should rely on descriptive test names, not comment blocks,
per project convention.
chat:
auto_reply: true
knowledge_base:
code_guidelines:
filePatterns:
- "CLAUDE.md"