[flake8]
max-line-length = 119
exclude =
    .git,
    __pycache__,
    .venv,
    venv,
    .eggs,
    *.egg,
    build,
    dist,
    .tox,
    */migrations/*,
    **/migrations/**
# E203: whitespace before ':' (conflicts with black)
# W503: line break before binary operator (conflicts with black)
# E701: multiple statements on one line (colon) - allow for type definitions
# C901: function complexity - allow complex business logic
extend-ignore = E203, W503, E701, C901
per-file-ignores =
    */migrations/*.py:E501,F401,F841
    ./formkit_ninja/migrations/*.py:E501,F401,F841
    formkit_ninja/migrations/0024_remove_formkitschemanode_insert_insert_and_more.py:E501

