[flake8]
# Flake8 configuration

# Maximum line length
max-line-length = 88

# Ignore specific errors/warnings
# E203: whitespace before ':' (conflicts with Black)
# W503: line break before binary operator (conflicts with Black)
# E501: line too long (handled by Black)
extend-ignore = E203, W503, E501

# Exclude directories
exclude =
    .git,
    __pycache__,
    .venv,
    venv,
    env,
    build,
    dist,
    *.egg-info,
    .pytest_cache,
    .mypy_cache

# Maximum complexity
max-complexity = 10

# Show source code for errors
show-source = True

# Count errors
count = True

# Report statistics
statistics = True



