-
Notifications
You must be signed in to change notification settings - Fork 988
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
20 lines (18 loc) · 1015 Bytes
/
.coderabbit.yaml
File metadata and controls
20 lines (18 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
reviews:
profile: "chill"
high_level_summary: false
auto_review:
enabled: true
drafts: true
ignore_title_keywords: ["WIP"]
# Custom review instructions for specific paths
path_instructions:
- path: "**/*.java"
instructions: |
- The primary coding conventions and style guide for this project are defined in `site/src/pages/community/developer-guide.mdx`. Please strictly adhere to this file as the ultimate source of truth for all style and convention-related feedback.
# 2. Specific check for `@UnstableApi`
- Review all newly added public classes and methods to ensure they have the `@UnstableApi` annotation.
- However, this annotation is NOT required under the following conditions:
- If the class or method is located in a package containing `.internal` or `.testing`.
- If the class or method is located in a test source set.
- If a public method is part of a class that is already annotated with `@UnstableApi`.