summaryrefslogtreecommitdiff
path: root/.pydocstyle
diff options
context:
space:
mode:
Diffstat (limited to '.pydocstyle')
-rw-r--r--.pydocstyle6
1 files changed, 5 insertions, 1 deletions
diff --git a/.pydocstyle b/.pydocstyle
index 229bd2904fe..2fed49e4f98 100644
--- a/.pydocstyle
+++ b/.pydocstyle
@@ -9,6 +9,10 @@ inherit = false
# D212 - Multi-line docstring summary should start at the first line
# D213 - Multi-line docstring summary should start at the second line
# D301 - Use r""" if any backslashes in a docstring
-ignore = D105,D202,D203,D212,D213,D301
+# D401 - First line should be in imperative mood
+# D407 - Missing dashed underline after section
+# D413 - Missing blank line after last section
+# D415 - First line should end with a period, question mark, or exclamation point
+ignore = D105,D202,D203,D212,D213,D301,D401,D407,D413,D415
# Do not run on buildscripts/tests/
match = ^((?!buildscripts[\\\/]tests[\\\/]).)*$