
[flake8]
ignore =
    D1,    # Missing docstring in *
    D200,  # One-line docstring should fit on one line with quotes
    D202,  # No blank lines allowed after function docstring
    D211,  # No blank lines allowed before class docstring
    E704,  # multi statement on one line
    E741,  # ambiguous variable name
    F401,  # bad handling of typing

enable-extensions=
    G,  # enable all logging-format checks

max-line-length = 100
exclude = .env
max-complexity = 9
accept-encodings = utf-8
