-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.pydocstyle
14 lines (14 loc) · 897 Bytes
/
.pydocstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[pydocstyle]
ignore = D102, # Missing docstring in public method
D105, # Missing docstring in magic method
D107, # Missing docstring in __init__
D200, # One-line docstring should fit on one line with quotes
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
D213, # Multi-line docstring summary should start at the second line
D401, # First line should be in imperative mood. According to https://github.com/google/styleguide/blob/gh-pages/pyguide.md this rule is disabled.
D406, # Section name should end with a newline
D407, # Missing dashed underline after section
D413, # Missing blank line after last section
D416, # Section name should end with a semicolon