File: .flake8

package info (click to toggle)
python-toml 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 208 kB
  • sloc: python: 1,278; makefile: 7; sh: 5
file content (21 lines) | stat: -rw-r--r-- 338 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[flake8]
exclude =
    # Do not track .git dir
    .git,
    # Do not track virtualenv dir
    venv,
    # Ignore folders in gitignore
    dist,
    build,
    # Do not track pycache dirs
    __pycache__,
    .tox,

max-line-length = 80
ignore =

# Output config:
show-source = True
statistics = True
tee = True
output-file = .flake8.log