summaryrefslogtreecommitdiff
path: root/.flake8
blob: d10d72d2ab2f4866573f9cb3f7308b5104e749c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[flake8]
show-source = True
# don't complain about work black has done
max-line-length = 88
extend-exclude =
    bin,
    bench,
    doc,
    src,
    template,
    testing,
    test,
    timings,
    SCons/Tool/docbook/docbook-xsl-1.76.1,
    bootstrap.py,
    runtest.py
extend-ignore = 
    E302,
    E305
per-file-ignores =
    # module symbols made available for compat - ignore "unused" warns
    SCons/Util/__init__.py: F401