We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c2efb commit 231dcd8Copy full SHA for 231dcd8
docs/conf.py
@@ -188,6 +188,17 @@
188
numpydoc_skip_errors = tomllib.load(f)["numpydoc_skip_errors"]
189
190
numpydoc_validation_checks = {"all"} | set(numpydoc_skip_errors)
191
+numpydoc_validation_exclude = { # regex to ignore during docstring check
192
+ r"\.__getitem__",
193
+ r"\.__contains__",
194
+ r"\.__hash__",
195
+ r"\.__mul__",
196
+ r"\.__sub__",
197
+ r"\.__add__",
198
+ r"\.__iter__",
199
+ r"\.__div__",
200
+ r"\.__neg__",
201
+}
202
203
# Add any paths that contain custom static files (such as style sheets) here,
204
# relative to this directory. They are copied after the builtin static files,
0 commit comments