[flake8]
ignore =
    # E201 whitespace after '('
    E201,
    # E221 multiple spaces before operator
    E203,
    # E203 whitespace before ':'
    E221,
    # E251 unexpected spaces around keyword / parameter equals
    E251
    # E303 too many blank lines
    E303

    #--------------------------------------------------------------------------
    # PLUGINS
    #--------------------------------------------------------------------------

    # PT007 wrong values type in @pytest.mark.parametrize, expected list
    PT007


max-line-length = 120
exclude =
    .git,
    .tox,
    __pycache__,
    build,
    dist,
    __init__.py,
