From 5490c28fcfd5fd3c045cd34441a37948758f56c7 Mon Sep 17 00:00:00 2001 From: lumtis Date: Mon, 24 Jun 2024 11:28:22 +0200 Subject: [PATCH] chore: initialize coderabbit config to focus on smart contracts, tests, and scripts --- .coderabbit.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 00000000..00dc812b --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,14 @@ +reviews: + path_instructions: + - path: 'contracts/**' + instructions: >- + Review the Solidity contracts for security vulnerabilities and best practices. + - path: 'test/**' + instructions: >- + Review the test files for proper coverage, edge cases, and best practices. + - path: 'scripts/**' + instructions: >- + Review the scripts for best practices. + auto_review: + base_branches: + - main \ No newline at end of file