Add isort to pyproject.toml

This commit is contained in:
kaliko 2024-10-14 18:32:28 +02:00
parent d96c5f79fb
commit 33b1101ce1

View File

@ -50,3 +50,9 @@ skip-string-normalization = true
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end"
[tool.isort]
profile = "black"
known_first_party = "borgmatic"
line_length = 100
skip = ".tox"