From 6bf41ee987fb0426a938c495672e8bc3ee50b2bd Mon Sep 17 00:00:00 2001 From: skosito Date: Wed, 3 Jul 2024 20:33:43 +0100 Subject: [PATCH] fix: fix coderabbit config (#207) --- .coderabbit.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 5eb60fc3..3faabaaf 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -1,9 +1,9 @@ reviews: path_filters: - - "pkg/**" - - "typechain-types/**" - - "docs/**" - - "data/**" + - "!pkg/**" + - "!typechain-types/**" + - "!docs/**" + - "!data/**" path_instructions: - path: 'contracts/**' instructions: >- @@ -13,7 +13,10 @@ reviews: Review the test files for proper coverage, edge cases, and best practices. - path: 'scripts/**' instructions: >- - Review the scripts for best practices. + Review the Hardhat scripts for best practices. + - path: 'tasks/**' + instructions: >- + Review the Hardhat tasks for best practices. auto_review: base_branches: - main \ No newline at end of file