@@ -17,8 +17,9 @@ This section explains how to add custom code review instructions for the entire
1717project or specific file paths in your project using glob patterns. Developers
1818can provide tailored review guidelines based on the file paths. These
1919instructions are needed only if you want CodeRabbit to follow specific
20- instructions besides the standard review. For example, you may want to enforce a
21- style guide by file types or directories.
20+ instructions besides the standard review.
21+
22+ > For example, you may want to enforce a style guide by file types or directories.
2223
2324###Sample Usage
2425
@@ -72,21 +73,6 @@ learning curve involved.
7273
7374:: :
7475
75- CodeRabbit offers review instructions based on Abstract Syntax Tree (AST)
76- patterns. Under the hood, CodeRabbit uses
77- [`ast-grep`](https://ast-grep.github.io) to power this feature. `ast-grep` is
78- written in Rust and uses the tree-sitter parser to generate the AST for popular
79- languages. `ast-grep` is written and maintained by
80- [Herrington Darkholme](https://twitter.com/hd_nvim).
81-
82- :::tip
83-
84- ` ast-grep` Playground is quite effective in designing and testing AST rules on
85- source code snippets. You can access the playground
86- [here](https://ast-grep.github.io/playground.html).
87-
88- :: :
89-
9076:::note
9177
9278**Deep dive into AST patterns and `ast-grep` rules**