From 63ddac1c34c1dacaf72644aaa87edc2151b985a4 Mon Sep 17 00:00:00 2001 From: Jared Ondricek Date: Wed, 9 Aug 2023 12:40:35 -0500 Subject: [PATCH] Ignore D100: Missing docstring in public module --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 63add59b..638468f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ profile = "black" line-length = 120 ignore = [ "E501", # line-too-long + "D100", # Missing docstring in public module "D105", # undocumented-magic-method ] # On top of the defaults (E, F), enable pydocstyle (D) and isort (I).