- Notifications
You must be signed in to change notification settings - Fork69
updateschemaexample#31
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -55,8 +55,13 @@ reviews: | ||
| - "feat/.*" | ||
| tools: | ||
| ast-grep: | ||
| rule_dirs: | ||
| - "rules" | ||
| util_dirs: | ||
| - "utils" | ||
| packages: | ||
| - "ast-grep-essentials" | ||
| - "my-awesome-org/my-awesome-package" # public repository that contains ast-grep | ||
| chat: | ||
| auto_reply: true | ||
| ``` | ||
Comment on lines 55 to 67 Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more.
Consider removing the extra spaces between "below" and "options" for consistency in the document's formatting. - using one of the below options.+ using one of the below options.
The note about the - `.coderabbit.yaml` file should be placed in the root directory of the repository.+ `.coderabbit.yaml` file should be placed in the root directory of the repository.
The header for version 1 should start with an uppercase letter to maintain consistency with the document's formatting. - #### version 1: `deprecated` (Please use version [version 2](/guides/customize-coderabbit))+ #### Version 1: `deprecated` (Please use version [version 2](/guides/customize-coderabbit))
There seems to be an unpaired symbol in the markdown link. Ensure that the markdown syntax for the link is correct. - section [Prompt Customization](/guides/prompt-customization)+ section [Prompt Customization](/guides/prompt-customization) | ||
| @@ -105,10 +110,11 @@ YAML settings: | ||
| apart from the default branch. Accepts regex pattern. | ||
| - **`tools`**: Configurations for the tools used in the review. | ||
| - **`ast-grep`**: Configurations for the `ast-grep` tool. | ||
| - **`rule_dirs`**: The directory name where the custom `ast-grep` | ||
| rules are stored. | ||
| - **`util_dirs`**: The directory name where the custom `ast-grep` | ||
| utils are stored. | ||
| - **`packages`**: A package allows you to share rules across multiple projects. Essentially, a package is a collection of `ast-grep` rules. | ||
| 4. **`chat`**: Defines the behavior of CodeRabbit's bot in conversations. | ||
| - **`auto_reply`**: The bot automatically replies without the need of the | ||
| user tagging it (default: `true`). | ||
| @@ -155,11 +161,7 @@ settings: | ||
| # Disable automatic code reviews for this repository. | ||
| disable_review: false | ||
| # External tools configurations | ||
| ``` | ||
| This configuration file consists of the following settings: | ||
| @@ -191,12 +193,7 @@ This configuration file consists of the following settings: | ||
| be posted. | ||
| 13. **`collapse_walkthrough_comment`**: Specifies whether to collapse | ||
| walkthrough comments on the review. | ||
| Refer: | ||
| [CodeRabbit configuration schema](https://coderabbit.ai/integrations/coderabbit-overrides.json). | ||