summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
Diffstat (limited to '.flake8')
-rw-r--r--.flake84
1 files changed, 3 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index ef62b6efbb..195c783726 100644
--- a/.flake8
+++ b/.flake8
@@ -24,7 +24,9 @@
#
# N8: PEP8-naming
# - N801: class names should use CapWords convention
+# - N813: camelcase imported as lowercase
+# - N814: camelcase imported as constant
#
[flake8]
-ignore = E129,E221,E241,E272,E731,W503,W504,F999,N801
+ignore = E129,E221,E241,E272,E731,W503,W504,F999,N801,N813,N814
max-line-length = 79