[flake8]
max-line-length = 150
extend-ignore = E203,W503,B027,D202
exclude =
    .git,
    __pycache__,
    docs,
    build,
    dist,
    .venv,
    venv,
    proto,
    tektii/proto,
    tektii/strategy/grpc/*_pb2*.py

per-file-ignores =
    # Ignore missing docstrings in test files
    tests/*:D100,D101,D102,D103,D104,D105,D106,D107
    # Ignore missing docstrings in __init__ files
    */__init__.py:D104
