[flake8]
max-line-length = 80
max-complexity = 12
extend-ignore =
    E203  # https://github.com/PyCQA/pycodestyle/issues/373
    E501  # for flake8-bugbear
    W503  # https://www.flake8rules.com/rules/W503.html
extend-select = B950
exclude =
    .git
    __pycache__
    var/
    */migrations/*
    build
    venv
