From 1238264f748065f2b719fc9788acb94d2d17579f Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 29 Dec 2025 17:00:39 +0100 Subject: [PATCH] OPT add linting workflow --- pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c255c6d..670185a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,3 +29,15 @@ build-backend = "setuptools.build_meta" [tool.setuptools] packages = ["src"] + +[tool.ruff] +line-length = 100 +target-version = "py314" + +[tool.ruff.lint] +select = ["E", "F", "I", "UP", "B", "SIM"] +ignore = [] + +[tool.ruff.format] +quote-style = "double" +indent-style = "space"