[flake8]
max-line-length = 88

## IGNORES

# E127: flake8 reporting incorrect continuation line indent errors
# on multi-line and multi-level indents

# W503, W504: flake8 reports this as incorrect, but black changes 
# code to it, so let black win.

ignore = E127,W503,W504
extend-ignore = E203
