setup.cfg (9 lines of code) (raw):
[flake8]
# E203: black and flake8 disagree on whitespace before ':'
# W503: black and flake8 disagree on how to place operators
ignore = E203, W503
max-line-length = 88
exclude =
build, dist, tutorials, website
[coverage:report]
omit =
test/*
setup.py