blob: d05ad8851b064ecae783afc6325f5cac614d1e7f [file] [edit]
[flake8]
# E203: whitespace before ':' in slices — conflicts with black
# W503: line break before binary operator — conflicts with black (PEP 8 now prefers this style)
# E501: line too long — handled by black (long strings in prompts are intentional)
extend-ignore = E203, W503, E501