From 05f46e47e88c79eda82241c204853ed1c6f01692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Irene=20L=C3=B3pez?= Date: Tue, 31 Oct 2023 10:16:56 +0000 Subject: [PATCH] feat: configure pydoclint to check all functions have args in their docstrings --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 4a3c45b2f..523c240b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -124,3 +124,4 @@ require-return-section-when-returning-nothing = false check-return-types = true allow-init-docstring = true arg-type-hints-in-docstring = true +skip-checking-short-docstrings = false