From f19fbf38cd4492be399ff861076b3093f4e37271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bobo=20B=C3=A4ck=20Engstr=C3=B6m?= Date: Wed, 22 Oct 2025 15:26:11 +0200 Subject: [PATCH] chore(ruff): Update maximum line length to 120 columns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default maximum line length is 80 columns, which is rather aggressive with modern tools. Signed-off-by: Bobo Bäck Engström --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2dc6cd4..e307289 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,9 @@ dev = [ "ruff>=0.14.0", ] +[tool.ruff] +line-length = 120 + [tool.ruff.lint] select = ["ALL"]