[flake8]
# Match black's line length so flake8 and black agree (mirrors the repo
# root's .flake8 — this adapter is a separate uv project and does not
# inherit it).
max-line-length = 100

# E203: whitespace before ':' — conflicts with black's slice formatting.
# W503: line break before binary operator — black does the opposite (W504-style).
extend-ignore = E203, W503
