From: Marvin Schenkel Date: Tue, 20 Jan 2026 11:00:17 +0000 (+0100) Subject: Also ignore ASYNC110 and N818 X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=cb6101883d7aae25534dfa9b27632eebdd401c56;p=music-assistant-server.git Also ignore ASYNC110 and N818 --- 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"]