2018-03-27 20:30:46 +02:00
|
|
|
# See https://readthedocs.org/projects/pydocstyle/
|
|
|
|
[pydocstyle]
|
|
|
|
inherit = false
|
2018-06-04 15:27:03 +02:00
|
|
|
|
2018-03-27 20:30:46 +02:00
|
|
|
# D105 - Missing docstring in magic method
|
2018-06-04 15:27:03 +02:00
|
|
|
# D107 - Missing docstring in __init__
|
2018-03-27 20:30:46 +02:00
|
|
|
# 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/
|
2019-04-16 20:33:43 +02:00
|
|
|
match = ^((?!buildscripts[\\\/]tests[\\\/]).)*$
|