-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
57 lines (50 loc) · 2.16 KB
/
.coderabbit.yaml
File metadata and controls
57 lines (50 loc) · 2.16 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
# SPDX-License-Identifier: Apache-2.0
# © James Ross Ω FLYING•ROBOTS <https://github.com/flyingrobots>
# CodeRabbit configuration — https://docs.coderabbit.ai/reference/configuration
language: "en-US"
tone_instructions: >-
Be direct and technical. Skip compliments. Focus on correctness,
determinism, and security. This is a game engine — performance matters.
reviews:
profile: "assertive"
path_filters:
# Archived docs are frozen historical records — don't review them.
- "!docs/archive/**"
path_instructions:
- path: "docs/spec-*.md"
instructions: >-
These are design-draft specs, not production code. Pseudo-code
snippets are intentionally simplified and may omit error handling.
Focus feedback on: correctness of the spec's intent, determinism
concerns, and contradictions with other specs. Do NOT flag pseudo-code
for missing null checks, incomplete error handling, or stylistic issues.
Sections marked with TODO are known gaps — do not re-flag them.
- path: "docs/**/*.md"
instructions: >-
Echo is a deterministic simulation engine. Documentation accuracy
matters — especially anything touching determinism guarantees, hash
stability, or canonical ordering. Flag factual errors and stale
cross-references. Do not flag stylistic preferences in prose.
- path: "crates/warp-core/**"
instructions: >-
warp-core is the deterministic kernel. Every code path must be
deterministic (no HashMap iteration order, no floating-point
platform variance, no thread-dependent ordering). Flag any
non-determinism risk. Performance matters — flag unnecessary
allocations in hot paths.
- path: "xtask/**"
instructions: >-
xtask is a developer tooling crate (linters, code generators).
It does NOT run in production or affect determinism. Review for
correctness and usability, not for performance micro-optimizations.
auto_review:
enabled: true
drafts: false
ignore_title_keywords:
- "WIP"
- "DO NOT MERGE"
chat:
auto_reply: true
knowledge_base:
learnings:
scope: "auto"