summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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