From 550cb841ecb239e0fa1f6cfeb02b922f22bcdfe6 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Tue, 11 Aug 2026 23:46:57 +0000 Subject: [PATCH] Prune ruff ignores --- pyproject.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 52e30fe..e5d08e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,14 +62,11 @@ target-version = "py311" select = ["ALL"] ignore = [ "COM812", - "ISC001", "ANN001", "ANN002", - "ANN003", "ANN201", "ANN202", "ANN204", - "ANN205", "BLE001", "C901", "CPY", @@ -94,14 +91,13 @@ ignore = [ "INP001", "PLR0911", "PLR0912", - "PLR0913", "PLR0915", "PLR2004", "PLW0603", "TRY003", ] isort.known-first-party = ["mediapreview"] -per-file-ignores."tests/*" = ["S", "ANN", "D", "INP", "PLR2004", "ARG001", "SLF001"] +per-file-ignores."tests/*" = ["S", "ARG001", "SLF001"] [tool.pytest.ini_options] asyncio_mode = "auto"