Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .coderabbit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# .coderabbit.yml
review:
enabled: true
summarize: true
max_comments: 20
severity_threshold: medium
Comment on lines +2 to +6
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Config keys don’t match the provided schema (likely ignored).

The schema defines reviews (plural) and doesn’t include summarize, max_comments, or severity_threshold. This will likely be ignored by CodeRabbit. Please align with the schema keys.

✅ Suggested fix (schema-aligned)
- review:
-   enabled: true
-   summarize: true
-   max_comments: 20
-   severity_threshold: medium
+ reviews:
+   # Keep only supported keys; adjust as needed
+   high_level_summary: true
+   # review_details: false
+   # commit_status: true
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
review:
enabled: true
summarize: true
max_comments: 20
severity_threshold: medium
reviews:
# Keep only supported keys; adjust as needed
high_level_summary: true
# review_details: false
# commit_status: true
🤖 Prompt for AI Agents
In @.coderabbit.yml around lines 2 - 6, The top-level key "review" is using the
wrong name and includes unsupported keys; rename "review" to "reviews" and
remove or replace unsupported keys ("summarize", "max_comments",
"severity_threshold") so the config matches the schema: keep only supported
fields under "reviews" or map those settings to their schema equivalents. Locate
the block that defines review settings (the "review" mapping) and update the key
to "reviews" and adjust its children to valid schema keys or delete the
unsupported entries.