flake8: Turn off pydocstyle D412
This commit is contained in:
parent
86ca9bec9c
commit
835792e8fa
4
.flake8
4
.flake8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue