File: setup.cfg

package info (click to toggle)
pybotvac 0.0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: python: 871; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[codespell]
skip = ./.git,./.mypy_cache,./.vscode,./venv

[flake8]
exclude = .vscode,venv
max-line-length = 88
ignore =
    # Import error, pylint covers this
    F401,
    # Formatting errors that are covered by black
    D202,
    E203,
    E501,
    W503,
    W504,

[isort]
profile=black
multi_line_output = 3
src_paths=pybotvac, sample