From cb6101883d7aae25534dfa9b27632eebdd401c56 Mon Sep 17 00:00:00 2001 From: Marvin Schenkel Date: Tue, 20 Jan 2026 12:00:17 +0100 Subject: [PATCH] Also ignore ASYNC110 and N818 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2ba6e87b..09e866c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -198,6 +198,8 @@ ignore = [ "TRY400", # Just annoying, not really useful "COM812", # Conflicts with the Ruff formatter "ASYNC109", # Not relevant, since we use helpers with configurable timeouts + "ASYNC110", # Use `asyncio.Event` instead of awaiting `asyncio.sleep` in a `while` loop + "N818", # Just annoying, not really useful # TEMPORARY DISABLED rules # The below rules must be enabled later one-by-one ! "BLE001", "FBT001", @@ -246,11 +248,9 @@ ignore = [ "RUF006", "TRY300", "S608", - "N818", "S307", "B007", "ANN204", - "ASYNC110", ] select = ["ALL"] -- 2.34.1