From bd411db5ea4a6d3bd5fe3b37fbd62692a29185cb Mon Sep 17 00:00:00 2001 From: Julian Stirling Date: Mon, 14 Apr 2025 09:25:01 +0100 Subject: [PATCH] Relax line length when linting (increased checker) --- ruff-increased-checking.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ruff-increased-checking.toml b/ruff-increased-checking.toml index 8de47661..9c4ffb8e 100644 --- a/ruff-increased-checking.toml +++ b/ruff-increased-checking.toml @@ -35,3 +35,8 @@ select = [ # also "D" but this even warns about docstring punctuation. Perhaps a step too # far? ] + +# Line length is set to 88 for ruff. This is what the formatter aims for +# some lines are not formatted to 88 if the formatter can't easily break +# them. Allow up to 99 beofre throwing a long line error +line-length = 99