From 562a53432a096c0bac083331539a66edff0c937c Mon Sep 17 00:00:00 2001 From: Lucas Bertrand Date: Mon, 24 Jun 2024 17:06:22 +0200 Subject: [PATCH] chore: initialize coderabbit config to focus review on code (#2374) --- .coderabbit.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 0000000000..381e9d9fc4 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,20 @@ +reviews: + path_filters: + - "**/*.pb.go" + - "**/*.pb.gw.go" + path_instructions: + - path: '**/*.go' + instructions: >- + Review the Go code, point out issues relative to principles of clean + code, expressiveness, and performance. + - path: '**/*.proto' + instructions: >- + Review the Protobuf definitions, point out issues relative to + compatibility, and expressiveness. + - path: '**/*.sh' + instructions: >- + Review the shell scripts, point out issues relative to security, + performance, and maintainability. + auto_review: + base_branches: + - develop \ No newline at end of file