From d080d03f5a4a5f03261633afcf947be988823e1d Mon Sep 17 00:00:00 2001 From: jkarasti Date: Mon, 2 Dec 2024 19:05:58 +0200 Subject: [PATCH] Lint: Enable isort (I) rules --- pyproject.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e59c492..4aee56a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ -[tool.poetry] + [tool.poetry] name = "dangerzone" version = "0.8.0" description = "Take potentially dangerous PDFs, office documents, or images and convert them to safe PDFs" @@ -70,6 +70,12 @@ verbosity = 3 # images that are a few days behind. See also: docs/developer/doit.md use_cache = false +[tool.ruff.lint] +select = [ + # isort + "I", +] + [build-system] requires = ["poetry-core>=1.2.0"] build-backend = "poetry.core.masonry.api"