From 87eac56345bd038ffeb729dcc10075ab9d9dc42b 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 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1f58e3d..8b153e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,12 @@ pymupdf = "1.24.11" # Last version to support python 3.8 (needed for Ubuntu Foca [tool.poetry.group.dev.dependencies] httpx = "^0.27.2" +[tool.ruff.lint] +select = [ + # isort + "I", +] + [build-system] requires = ["poetry-core>=1.2.0"] build-backend = "poetry.core.masonry.api"