diff options
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 4 |
1 files changed, 3 insertions, 1 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 |