From ca03afe04538161a3a7dc8a55fad1609615e4be0 Mon Sep 17 00:00:00 2001 From: pauladkisson Date: Mon, 2 Oct 2023 10:31:02 +0200 Subject: [PATCH] excluded missing docstring from numpydoc validation pre-commit --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b9b26627..48ea836f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,3 +19,9 @@ extend-exclude = ''' | dist )/ ''' + +[tool.numpydoc.validation] +checks = [ + "all", + "GL08", +]