File: .flake8

package info (click to toggle)
enrich 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 136 kB
  • sloc: python: 253; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
[flake8]
# do not add excludes for files in repo
exclude = .venv/,.tox/,dist/,build/,.eggs/
format = pylint
# E203: https://github.com/python/black/issues/315
ignore = E741,W503,W504,H,E501,E203,D
# 88 is official black default:
max-line-length = 88