summaryrefslogtreecommitdiff
path: root/.flake8
blob: e01c0e5c8036d5c1d0aaa874e07f0e6d201190fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[flake8]
max-line-length = 95
ignore =
    E116,
    E241,
    E251,
    E741,
    W503,
    W504,
    I101,
    SIM102,
    SIM103,
    SIM105,
    SIM114,
    SIM115,
    SIM117,
    SIM223,
    SIM401,
    SIM907,
    SIM910,
exclude =
    .git,
    .tox,
    .venv,
    tests/roots/*,
    build/*,
    doc/_build/*,
    sphinx/search/*,
    doc/usage/extensions/example*.py,
per-file-ignores =
    tests/*: E501