From 38b1607ad7675e81ec6cb932303526316af30137 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Fri, 9 Jan 2026 09:52:02 -0500 Subject: [PATCH] Disable the non-empty-init-module ruff rule This allows ruff check --preview to pass again. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d3bb963ac8..89c5519720 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -227,6 +227,7 @@ ignore = [ "RUF015", # unnecessary-iterable-allocation-for-first-element "RUF039", # unraw-re-pattern "RUF051", # if-key-in-dict-del + "RUF067", # non-empty-init-module "UP037", # quoted-annotation "W191", # tab-indentation ]