From 36b0b6f241c286bf2ff94c1af9cde86950ce3ec6 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 18 Jun 2026 18:10:06 +0000 Subject: [PATCH] chore: set max line length to 58 chars in Ruff config --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 702805a..7519732 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,6 +72,9 @@ scraibe = "scraibe.cli:cli" [tool.poetry.extras] app = ["scraibe-webui"] +[tool.ruff] +line-length = 58 + [tool.ruff.lint.extend-per-file-ignores] "__init__.py" = ["E402", "F403", "F401"] "scraibe/misc.py" = ["E722"]