[flake8]
# E203 	Whitespace before ':'
# E226 	Missing whitespace around arithmetic operator
# F401 	Module imported but unused
# F402 	Import module from line n shadowed by loop variable
# F403 	'from module import *' used; unable to detect undefined names
# W291 	Trailing whitespace
# W503 	Line break occurred before a binary operator
ignore = E203, E266, W503, F403, F401, E402, W291
max-line-length = 80
max-complexity = 11
application-import-names = hypermodern_python,tests
select = B,C,E,F,W,T4,B9
exclude =
    .git,
    .venv,
    .local,
    .tox,
    .hatch,
    node_modules,
    __pycache__,
    setup.py,
    build,
    dist,
    examples,
