summaryrefslogtreecommitdiff
path: root/.pydocstyle
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@10gen.com>2018-06-04 09:27:03 -0400
committerRobert Guo <robert.guo@10gen.com>2018-06-04 15:26:56 -0400
commit89eceaa7ca24bbb275062b1648a6df0b916778cd (patch)
tree41cba4ccafc63649777c2c2e00d8421e580306c1 /.pydocstyle
parent8309ad48487cb0529fc2153b5231f61e9a597db6 (diff)
downloadmongo-89eceaa7ca24bbb275062b1648a6df0b916778cd.tar.gz
SERVER-35195 Disable docstring requirement for __init__ in pydocstyle
Diffstat (limited to '.pydocstyle')
-rw-r--r--.pydocstyle2
1 files changed, 2 insertions, 0 deletions
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