summaryrefslogtreecommitdiff
path: root/.pydocstyle
blob: 96a61ed782599469e4c8108874091f2ba94ecea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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
# D213 - Multi-line docstring summary should start at the second line
# D301 - Use r""" if any backslashes in a docstring
ignore = D105,D202,D203,D212,D213,D301
# Do not run on buildscripts/tests/
match = ^((?!buildscripts\/tests\/).)*$