summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: a9d6c114b12ba8f5593010f36af691a7f44963ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[flake8]
exclude =
    .git,
    __pycache__,
    old,
    build,
    tmp,
    static,
    *.egg-info,
    doc,
    dist
    examples

# E501 = long lines
ignore = E501