flake8: Turn off pydocstyle D412

This commit is contained in:
Florian Bruhin 2019-08-11 10:08:00 +02:00
parent 86ca9bec9c
commit 835792e8fa
1 changed files with 3 additions and 1 deletions

View File

@ -33,6 +33,8 @@ exclude = .*,__pycache__,resources.py
# D402: First line should not be function's signature (false-positives)
# D403: First word of the first line should be properly capitalized
# (false-positives)
# D412: No blank lines allowed between a section header and its content
# (numpy-style)
# D413: Missing blank line after last section (not in pep257?)
# A003: Builtin name for class attribute (needed for overridden methods)
# W504: line break after binary operator
@ -42,7 +44,7 @@ ignore =
F401,
N802,
P101,P102,P103,
D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D413,
D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D412,D413,
A003,
W504
min-version = 3.4.0