borgmatic/setup.cfg

27 lines
462 B
INI
Raw Permalink Normal View History

[metadata]
description_file=README.md
[tool:pytest]
testpaths = tests
addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end
[flake8]
max-line-length = 100
extend-ignore = E203,E501,W503
exclude = *.*/*
multiline-quotes = '''
docstring-quotes = '''
[tool:isort]
profile=black
known_first_party = borgmatic
line_length = 100
skip = .tox
2023-04-01 18:03:59 +00:00
[codespell]
skip = .git,.tox,build
[pycodestyle]
ignore = E203
max_line_length = 100