From dea7e36f9931d06e71310815791c7d67760fc09b Mon Sep 17 00:00:00 2001 From: RViktor <120401244+v1k70rk4@users.noreply.github.com> Date: Wed, 17 Jun 2026 20:56:52 +0200 Subject: [PATCH] Add CodeRabbit config to disable docstring gate Add .coderabbit.yaml to disable docstring coverage checks. This configuration turns off the pre-merge docstring gate and disables docstring enforcement in finishing_touches so doc comments are only used when genuinely needed (security, transport, update/failover flows). --- .coderabbit.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 0000000..ae307c5 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,11 @@ +# CodeRabbit configuration — https://docs.coderabbit.ai/reference/configuration +# Docstring coverage gate disabled: doc comments are kept where the code genuinely +# needs explanation (security model, tunnel/transport, update & failover flows), +# not enforced as a blanket coverage percentage. +reviews: + pre_merge_checks: + docstrings: + mode: "off" + finishing_touches: + docstrings: + enabled: false