You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
385 B
15 lines
385 B
[tool:pytest]
|
|
pep8ignore = E501
|
|
|
|
[flake8]
|
|
# ignore errors and warnings
|
|
# - whitespace before ':', see https://github.com/psf/black/issues/315
|
|
# - line break before binary operator, see https://github.com/psf/black/issues/52
|
|
ignore = E203, W503
|
|
|
|
# must be in sync with 'black' formatter config in pyproject.toml
|
|
max-line-length = 88
|
|
|
|
[mypy]
|
|
ignore_missing_imports = True
|
|
exclude=docs/
|
|
|