From d0cd6353d7be09da2b6aa394fb794f8bfaf88a42 Mon Sep 17 00:00:00 2001 From: furtest Date: Wed, 28 Jan 2026 16:14:25 +0100 Subject: [PATCH] pyproject.toml : Add pylint as dev dependency --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5b96ec5..82346d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,3 +20,8 @@ packages = [{include = "unisync", from = "src"}] [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api" + +[dependency-groups] +dev = [ + "pylint (>=4.0.4,<5.0.0)" +]