From f1ea9ae8a5601fe1e14dee4064367bde809764db Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 11 Dec 2025 01:28:40 +0900 Subject: [PATCH] ruff: Enable E5 check ... to enforce maximum line length (70 characters). Change-Id: I1a32bfa19e020bc98e99c36937ac4c5cda692470 Signed-off-by: Takashi Kajinami --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9cc6f1b6..358c5055 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,7 +71,7 @@ quote-style = "preserve" docstring-code-format = true [tool.ruff.lint] -select = ["E4", "E7", "E9", "F", "S", "UP"] +select = ["E4", "E5", "E7", "E9", "F", "S", "UP"] ignore = [ # we only use asserts for type narrowing "S101",