2015-08-09 19:59:27 +02:00
|
|
|
[metadata]
|
2021-03-31 00:53:19 +02:00
|
|
|
description_file=README.md
|
2019-05-13 13:52:30 +02:00
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
testpaths = tests
|
|
|
|
addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end
|
|
|
|
|
|
|
|
[flake8]
|
2023-04-15 04:35:24 +02:00
|
|
|
max-line-length = 100
|
|
|
|
extend-ignore = E203,E501,W503
|
2019-05-13 13:52:30 +02:00
|
|
|
exclude = *.*/*
|
2023-03-07 23:08:35 +01:00
|
|
|
multiline-quotes = '''
|
|
|
|
docstring-quotes = '''
|
2019-05-13 23:38:43 +02:00
|
|
|
|
|
|
|
[tool:isort]
|
2023-04-15 04:35:24 +02:00
|
|
|
profile=black
|
2019-05-13 23:38:43 +02:00
|
|
|
known_first_party = borgmatic
|
|
|
|
line_length = 100
|
|
|
|
skip = .tox
|
2023-04-01 20:03:59 +02:00
|
|
|
|
|
|
|
[codespell]
|
|
|
|
skip = .git,.tox,build
|
2023-04-15 04:35:24 +02:00
|
|
|
|
|
|
|
[pycodestyle]
|
|
|
|
ignore = E203
|
|
|
|
max_line_length = 100
|