From 9838dd61529234ecadaf3d5836d3b872ff9a0e55 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Tue, 30 Jun 2026 15:23:59 +0800 Subject: [PATCH] chore(ruff): ignore E701 in ruff config E701 (Multiple statements on one line) is used consistently in shared scripts like gate_codex_app_review.py across the org. Ignoring it matches the established code style. Co-Authored-By: Claude --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2111f0b..3dbeb7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,5 +23,6 @@ package-dir = {"" = "src"} where = ["src"] [tool.ruff] +ignore = ["E701"] target-version = "py311" line-length = 120