diff options
Diffstat (limited to '.flake8')
-rw-r--r-- | .flake8 | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -27,9 +27,17 @@ # - N813: camelcase imported as lowercase # - N814: camelcase imported as constant # +# F4: pyflakes import checks, these are now checked by mypy more precisely +# - F403: from module import * +# - F405: undefined name or from * +# +# Black ignores, these are incompatible with black style and do not follow PEP-8 +# - E203: white space around slice operators can be required, ignore : warn +# - W503: see above, already ignored for line-breaks +# [flake8] -ignore = E129,E221,E241,E272,E731,W503,W504,F999,N801,N813,N814 -max-line-length = 79 +ignore = E129,E221,E241,E272,E731,W503,W504,F999,N801,N813,N814,F403,F405 +max-line-length = 88 # F4: Import # - F405: `name` may be undefined, or undefined from star imports: `module` |