diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-12 11:01:34 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-05-12 11:01:34 +0300 |
| commit | 37144948464285020d89e6b411d8bcd5d51b1c32 (patch) | |
| tree | b5978352e73b6d0afa4a682bdc774b2ccd5fe900 | |
| parent | a2d59fd77e808b041b68c80aa4b545f8625e0f9c (diff) | |
| download | coderabbit-37144948464285020d89e6b411d8bcd5d51b1c32.tar.gz coderabbit-37144948464285020d89e6b411d8bcd5d51b1c32.zip | |
T8764: disable docstring generation org-wide, mirror unit-tests pattern
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)
| -rw-r--r-- | .coderabbit.yaml | 11 |
1 files 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: |
