From 89eceaa7ca24bbb275062b1648a6df0b916778cd Mon Sep 17 00:00:00 2001 From: Robert Guo Date: Mon, 4 Jun 2018 09:27:03 -0400 Subject: SERVER-35195 Disable docstring requirement for __init__ in pydocstyle --- .pydocstyle | 2 ++ 1 file changed, 2 insertions(+) (limited to '.pydocstyle') diff --git a/.pydocstyle b/.pydocstyle index dc8da3eaf1f..96a61ed7825 100644 --- a/.pydocstyle +++ b/.pydocstyle @@ -1,7 +1,9 @@ # See https://readthedocs.org/projects/pydocstyle/ [pydocstyle] inherit = false + # D105 - Missing docstring in magic method +# D107 - Missing docstring in __init__ # D202 - No blank lines allowed after function docstring # D203 - 1 blank line required before class docstring # D212 - Multi-line docstring summary should start at the first line -- cgit v1.2.1