diff --git a/pydocstyle.ini b/pydocstyle.ini index a4ba2ddc..64b4c2cd 100644 --- a/pydocstyle.ini +++ b/pydocstyle.ini @@ -10,4 +10,5 @@ convention = google # D212 - Allow function/method docstring summaries to start on the second line (Google-style) # D213 - Allow class docstring summaries to start on the first line (Google-style) # D301 - Use r""" if any backslashes in a docstring -add-ignore = D100,D107,D200,D203,D212,D213,D301 +# D415 - Do not enforce punctuation on the first line of docstrings +add-ignore = D100,D107,D200,D203,D212,D213,D301,D415 diff --git a/pyproject.toml b/pyproject.toml index 5231d90f..4e88599c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,3 +11,4 @@ include = '\.py' style = "google" check-return-types = true allow-init-docstring = true +ignore = ["DOC501"] # Ignore Raises section requirement