File: .flake8

package info (click to toggle)
python-toml 0.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 244 kB
  • sloc: python: 1,496; sh: 6; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (3)
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 = W504

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