in tasks.py [0:0]
def lint(c): # noqa: ANN001, ANN201
"""Run linting checks"""
with c.prefix(venv):
local_names = _determine_local_import_names(".")
c.run(
"flake8 --exclude venv "
"--max-line-length=88 "
"--import-order-style=google "
f"--application-import-names {','.join(local_names)} "
"--ignore=E121,E123,E126,E203,E226,E24,E266,E501,E704,W503,W504,I202"
)