From e9c3bac327f154ef6cb2c1344d1dc1ee0637a8da Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Thu, 3 Sep 2026 21:50:42 -0700 Subject: [PATCH] Add link to upstream ruff bug. NFC --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d55c2bf5d324d..58591a37b955d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,8 +59,8 @@ lint.ignore = [ "line-too-long", "type-comparison", "ambiguous-variable-name", - "indentation-with-invalid-multiple", # Does not seem to honor `indent-width = 2` above - "indentation-with-invalid-multiple-comment", # Does not seem to honor `indent-width = 2` above + "indentation-with-invalid-multiple", # Does not honor `indent-width`. See https://github.com/astral-sh/ruff/issues/8705 + "indentation-with-invalid-multiple-comment", # Does not honor `indent-width`. See https://github.com/astral-sh/ruff/issues/8705 "too-few-spaces-before-inline-comment", "try-except-in-loop", "manual-list-comprehension",