Skip to content
This repository was archived by the owner on Aug 16, 2025. It is now read-only.

restructure existing blog posts #19

Merged
merged 24 commits into from
Mar 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5179dea
format blog file
harjotgill Mar 2, 2024
c0e81f1
format all blog files
harjotgill Mar 2, 2024
f777247
hide version 1 schema
harjotgill Mar 1, 2024
26799b5
Update faq.md
guritfaq Mar 7, 2024
2ba4987
Fix images for light and dark mode. Made improvements to docs (#22)
karan925 Mar 12, 2024
a059d97
Add ast-grep documentation page
petrisorcoderabbit Mar 8, 2024
9941a21
Update the ast-grep documentation to include the coderabbit config fi…
petrisorcoderabbit Mar 8, 2024
82d7eed
Fix language review
petrisorcoderabbit Mar 11, 2024
02189bf
Update coderabbit.yaml schema for ast-grep tool naming
petrisorcoderabbit Mar 12, 2024
98f0ef6
Update coderabbig guide page with new coderabbit.yaml changes
petrisorcoderabbit Mar 12, 2024
d705086
Update 2023-11-13-boosting-engineering-efficiency.md
guritfaq Mar 12, 2024
d0bd7ba
Move ast-grep documentation under the prompt-customization page
petrisorcoderabbit Mar 13, 2024
00e15a3
Change ast-grep naming
petrisorcoderabbit Mar 13, 2024
c59229f
Correct grammar for ast-grep documentation
petrisorcoderabbit Mar 13, 2024
c154d61
update faqs
karan925 Mar 12, 2024
8b47f3f
Update Discord link in Footer component (#25)
karan925 Mar 15, 2024
dd21258
restructure existing blog posts
harjotgill Mar 17, 2024
2cbb989
merge
harjotgill Mar 17, 2024
a5adb95
restructure existing docs
harjotgill Mar 17, 2024
82aa358
restructure existing docs
harjotgill Mar 17, 2024
6a91e80
review feedback
harjotgill Mar 17, 2024
3dc4177
add preview image
harjotgill Mar 17, 2024
0cb9eb9
use directory instead of folder terminology
harjotgill Mar 17, 2024
6c75ada
nit
harjotgill Mar 17, 2024
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
Prev Previous commit
Next Next commit
Update coderabbit.yaml schema for ast-grep tool naming
  • Loading branch information
petrisorcoderabbit authored and harjotgill committed Mar 17, 2024
commit 02189bf3d0515e0eb40e6d254943ab63fe2ad26a
8 changes: 4 additions & 4 deletions docs/integrations/ast-grep.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ By default, users can add AST-Grep rules by following these steps:
2. Add individual `.yaml` files for each AST-Grep rule within the `custom-name` folder.
3. Ensure each `.yaml` file contains the necessary AST-Grep rule configurations.
4. Ensure that all rules contains a `message` property, that will be used in the review process.
5. Add the `custom-name` folder to the `.code-rabbit.yml` file under `tools.ast_grep` configuration.
5. Add the `custom-name` folder to the `.code-rabbit.yml` file under `tools.ast-grep` configuration.
```yaml
#...
reviews:
#...
tools:
ast_grep:
ast-grep:
rules_folder: "custom-name"
#...
```
Expand Down Expand Up @@ -169,14 +169,14 @@ my-awesome-project # project root
| |- is-literal.yml
```

>Also, you need to add the `rules` and `utils` folders to the `.code-rabbit.yml` file under `tools.ast_grep` configuration.
>Also, you need to add the `rules` and `utils` folders to the `.code-rabbit.yml` file under `tools.ast-grep` configuration.

```yaml
#...
reviews:
#...
tools:
ast_grep:
ast-grep:
rules_folder: "rules"
utils_folder: "utils"
#...
Expand Down