File: .flake8

package info (click to toggle)
python-aioitertools 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: python: 2,025; makefile: 49
file content (15 lines) | stat: -rw-r--r-- 181 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[flake8]
ignore =
    # mccabe complexity
    C901

    # covered by black/usort
    E1
    E2
    E3
    E4
    E704

max-line-length = 88
per-file-ignores =
    __init__.py: F401