summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 5a88bef0a92bda8cc90a76d7c33abfc0ebfe7d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
[flake8]
max_line_length = 120
select = E,F,W,C4,C90
exclude = __pycache__,.tox,.venv,build,dist
# Defer these rules to black:
ignore =
    E203  # whitespace before ':'
    E225  # missing whitespace around operator
    E501  # line too long
    W503  # line break before binary operator
    W504  # line break after  binary operator