File: .flake8

package info (click to toggle)
python-dlt 2.18.10.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 488 kB
  • sloc: python: 3,454; makefile: 56
file content (20 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[flake8]
max-line-length = 119
ignore =
    # D10*: Missing docstring
    D10
    # E203: whitespace before ':'
    # This error is not PEP8 complaint and should be ignored
    E203
    # W503: line break before binary operator
    # seems to conflict with black code formatting
    W503
    # W605: invalid escape sequence '\d'
    W605
exclude =
    .git,
    .tox,
    .eggs,
    __pycache__,
    build,
    dist