From 37144948464285020d89e6b411d8bcd5d51b1c32 Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Tue, 12 May 2026 11:01:34 +0300 Subject: T8764: disable docstring generation org-wide, mirror unit-tests pattern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sets `reviews.finishing_touches.docstrings.enabled: false` to match the already-disabled `unit_tests.enabled: false`. Same rationale: documentation conventions vary too much across the fleet for org-wide auto-generation to be useful — Python repos use Sphinx-style, Go repos use godoc-style, web repos use TSDoc-style. Repos that want CodeRabbit to fill in docstrings opt in via their own `.coderabbit.yaml`. 🤖 Generated by [robots](https://vyos.io) --- .coderabbit.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index ca2bd1a..84aa3b9 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -84,12 +84,13 @@ reviews: - "!**/.terragrunt-cache/**" finishing_touches: + # Both docstring and unit-test generation are disabled at the org-wide + # level; per-repo `.coderabbit.yaml` files re-enable either feature + # where the stack (language, testing framework, doc conventions) + # makes it a good fit. Fleet-wide generation is too noisy because + # the conventions differ across repos. docstrings: - enabled: true - # Disabled at the org-wide level; per-repo `.coderabbit.yaml` files - # re-enable unit-test generation where the testing stack is a good fit. - # Lifted from Org-UI Web dashboard (2026-05-12) where it was explicitly - # disabled. + enabled: false unit_tests: enabled: false simplify: -- cgit v1.2.3