From 33b1101ce1023df3d5ef9d88fc69f4318056715f Mon Sep 17 00:00:00 2001 From: kaliko Date: Mon, 14 Oct 2024 18:32:28 +0200 Subject: [PATCH] Add isort to pyproject.toml --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c4bf56bb..4a252319 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"