From c14f7850d2b5e8b2b562c687a23ea3de54655bba Mon Sep 17 00:00:00 2001 From: Zachary Blasczyk <77289967+zacharyblasczyk@users.noreply.github.com> Date: Tue, 10 Dec 2024 16:22:33 -0600 Subject: [PATCH] make coderabbit less annoying (#260) --- .coderabbit.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index cfbddffe8..d940342e9 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -2,4 +2,9 @@ language: en-US reviews: - poem: false + poem: true + path_instructions: + - path: "**/*.{ts,tsx}" + instructions: | + **Note on Error Handling:** + Avoid strict enforcement of try/catch blocks. Code may use early returns, Promise chains (.then().catch()), or other patterns for error handling. These are acceptable as long as they maintain clarity and predictability.