summaryrefslogtreecommitdiff
path: root/.flake8
blob: ba8a3d67fe4354053d125510cf60c03d48d01ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[flake8]
builtins = _
exclude =
    .git,
    __pycache__,
    .venv/,venv/,
    .tox/,
    build/,dist/,*egg,
    docs/conf.py,
    zookeeper/
# See black's documentation for E203
max-line-length = 79
extend-ignore = BLK100,E203