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