[flake8]
max-complexity = 10

# E741: ambiguous variable name
# E743: ambiguous function definition
ignore = E741, E743

exclude =
    .git,
    .*,
    __pycache__,
    build,
    dist

per-file-ignores =
    # F401: imported but not used
    src/colorviews/__init__.py : F401
