-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pydocstyle
19 lines (19 loc) · 1.12 KB
/
.pydocstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[pydocstyle]
ignore = D100, # Missing docstring in public module
D101, # Missing docstring in public class
D102, # Missing docstring in public method
D103, # Missing docstring in public function
D104, # Missing docstring in public package
D105, # Missing docstring in magic method
D106, # Missing docstring in public nested class
D107, # Missing docstring in __init__
D202, # "No blank lines allowed after function docstring" conflicts with
# the Black code formatter, which insists on inserting blank lines
# after function docstrings.
D203, # "1 blank line required before class docstring" conflicts with
# pydocstyle rule D211 "No blank lines allowed before class
# docstring". You have to disable one of them.
D213, # Multi-line docstring summary should start at the second line.
# This conflicts with pydocstyle rule D212
# "Multi-line docstring summary should start at the second line".
# You have to disable one of them.