diff --git a/setup.cfg b/setup.cfg index 44cf316f..0d68ad90 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,13 +27,12 @@ testpaths = abilian tests python_files = test_*.py tests.py [flake8] -# E122-129,E251,W503: not autocorrected by yapf # F401: unused import (actually used by mypy) # E711,E712: things that are actually correct for SQLAlchemy # E741: don't use 1-letter variables. FIXME. # C408: dict vs. {} # E203: spaces around ':'. Black does this sometimes. -ignore = E122,E123,E124,E126,E129,E251,W503,F401,E711,E712,E741,C408,E203 +ignore = E203,E711,E712,E741,F401,W503,C408 max-line-length = 90 exclude=.tox,docs ; flake8-tidy-imports