summaryrefslogtreecommitdiff
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 17:30:37 -0400
commit9b1a0cadf91e988c780f072be64175c1c3b1e577 (patch)
tree5c3c245986aeaec9db23797cca8146a58865628f
parent52e32f10d3afb7b161747c7fac9a3cb2cf6bf618 (diff)
downloadmongo-9b1a0cadf91e988c780f072be64175c1c3b1e577.tar.gz
SERVER-35195 Disable docstring requirement for __init__ in pydocstyle
(cherry picked from commit 89eceaa7ca24bbb275062b1648a6df0b916778cd)
-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