From e9654034a0db9082fe753af67fa4ab64017e5496 Mon Sep 17 00:00:00 2001 From: Kiyoon Kim Date: Wed, 25 Dec 2024 00:32:15 +0900 Subject: [PATCH] feat: ignore D205 1 blank line lint --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 9c5e3e3..e93dbd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,6 +147,7 @@ ignore = [ "W291", # Trailing whitespace "D10", # Missing docstring in public module / function / etc. "D200", # One-line docstring should fit on one line with quotes + "D205", # 1 blank line required between summary line and description "D212", # Multi-line docstring summary should start at the first line "D417", # require documentation for every function parameter. "D401", # require an imperative mood for all docstrings.