File: setup.cfg

package info (click to toggle)
python-djvulibre 0.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 696 kB
  • sloc: python: 2,449; makefile: 38; sh: 25
file content (32 lines) | stat: -rw-r--r-- 500 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
22
23
24
25
26
27
28
29
30
31
32
[pycodestyle]
filename = *.py,*.pyx,*.px[di]
# show-source = true
ignore = 412,E131,E2,E3,E4,E501,E722,W504
exclude =
    # Git.
    .git,
    # Python cache.
    __pycache__,
    # Build directories.
    build,
    dist,
    # IDEs.
    .idea,
    # CI environment.
    deps,
max-line-length = 140

[flake8]
exclude =
    # Git.
    .git,
    # Python cache.
    __pycache__,
    # Build directories.
    build,
    dist,
    # IDEs.
    .idea,
    # CI environment.
    deps,
max-line-length = 140