summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-08-11 10:08:00 +0200
committerFlorian Bruhin <me@the-compiler.org>2019-08-11 10:08:00 +0200
commit835792e8fa8202c1d1104dec59bd08b3c201d1a9 (patch)
treed63b338cef68806749b315d852bb4ceae762da27 /.flake8
parent86ca9bec9c81abd1f24ec33248ce98b9854828a0 (diff)
downloadqutebrowser-835792e8fa8202c1d1104dec59bd08b3c201d1a9.tar.gz
qutebrowser-835792e8fa8202c1d1104dec59bd08b3c201d1a9.zip
flake8: Turn off pydocstyle D412
Diffstat (limited to '.flake8')
-rw-r--r--.flake84
1 files changed, 3 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index d9c9c44d9..e913647f9 100644
--- a/.flake8
+++ b/.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