[flake8]
max-line-length = 88
exclude = .eggs,.git,.hg,.mypy_cache,.tox,.venv,venv,__pycached__,_build,buck-out,build,dist,node_modules
ignore =
    ; formatting handled by black
    ; https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
    ; https://github.com/ambv/black/issues/429
    E101,
    E111,
    E114,
    E115,
    E116,
    E117,
    E121,
    E122,
    E123,
    E124,
    E125,
    E126,
    E127,
    E128,
    E129,
    E131,
    E133,
    E2,
    E3,
    E5,
    E701,
    E702,
    E703,
    E704,
    W1,
    W2,
    W3,
    W503,
    W504,
    F401,
    F821,
    ; wrong in type stubs '__all__ = []' for some reason
    F822
    Y015
