From ccd39118c2489ae8db8617bc262fb3d4b58fe29e Mon Sep 17 00:00:00 2001 From: stumpylog <797416+stumpylog@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:07:05 -0700 Subject: [PATCH] Chore: enable pydocstyle D419 ruff rule Zero current violations. Only D419 (empty-docstring) is part of ruff 0.16's default rule set; the rest of pydocstyle is opt-in. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index a681290f8..dd8a81146 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -189,6 +189,7 @@ extend-select = [ "ASYNC", # https://docs.astral.sh/ruff/rules/#flake8-async-async "C4", # https://docs.astral.sh/ruff/rules/#flake8-comprehensions-c4 "COM", # https://docs.astral.sh/ruff/rules/#flake8-commas-com + "D419", # https://docs.astral.sh/ruff/rules/#pydocstyle-d "DJ", # https://docs.astral.sh/ruff/rules/#flake8-django-dj "EXE", # https://docs.astral.sh/ruff/rules/#flake8-executable-exe "FA", # https://docs.astral.sh/ruff/rules/#flake8-future-annotations-fa