File: pylama.ini

package info (click to toggle)
python-allpairspy 2.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 204 kB
  • sloc: python: 627; makefile: 42; sh: 6
file content (16 lines) | stat: -rw-r--r-- 373 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[pylama]
skip = .eggs/*,.tox/*,*/.env/*,build/*,node_modules/*,_sandbox/*,build/*,docs/conf.py

[pylama:pycodestyle]
max_line_length = 100

# E203: whitespace before ':' (for black)
# W503: line break before binary operator (for black)
ignore = E203,W503

[pylama:pylint]
max_line_length = 100

[pylama:*/__init__.py]
# W0611: imported but unused [pyflakes]
ignore = W0611