diff options
-rw-r--r-- | .flake8 | 4 | ||||
-rw-r--r-- | .flake8_packages | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -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 diff --git a/.flake8_packages b/.flake8_packages index e7677e66d2..d17a34951d 100644 --- a/.flake8_packages +++ b/.flake8_packages @@ -20,5 +20,5 @@ # - F821: undefined name `name` # [flake8] -ignore = E129,E221,E241,E272,E731,W503,W504,F405,F821,F999 +ignore = E129,E221,E241,E272,E731,W503,W504,F405,F821,F999,N801,N813,N814 max-line-length = 79 |