[flake8]
ignore =
    # E402 module level import not at top of file
    E402,
    # F401 'builtins.*' imported but unused
    F401,
    # F403 'from builtins import *' used; unable to detect undefined names
    F403,
    # F405 'unicode' may be undefined, or defined from star imports: builtins
    F405,
    # W503 line break before binary operator
    W503,
    # E501 line too long
    E501,
exclude =
    .git/,
    .idea/,
    .venv/,
    .vscode/,
    __pycache__,
    dist/,
    build/,
    .eggs/,
    docs/conf.py,
    venv/,
    versioneer.py,
    dnacentercli/_version.py,
    tests/,
