# ******************************** # |docname| - Flake8 configuration # ******************************** # See the `docs `_ for more details. [flake8] # Although there is a `max-doc-length `_, setting this still produces lots of error about long lines, even if those lines are just a comment. The docs on `max-line-length `_ states that it applies to ALL lines -- including comments -- unless they contain a URL or a string. So, set this to allow long comments. max-line-length = 50000 # Make this play nicely with Black. See the `docs `__. extend-ignore = E203 # Exclude generated/test files. exclude = build gen_py .tox templates venv_fedora