From 2e6c0ec9a05973f6b31b2d2a95ef256cfa6411f3 Mon Sep 17 00:00:00 2001 From: JeffreyChen Date: Sat, 25 Jul 2026 14:18:19 +0800 Subject: [PATCH] Ignore ruff PLR0917 to match existing PLR0913 exemption --- ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/ruff.toml b/ruff.toml index f16df5b..12ba12b 100644 --- a/ruff.toml +++ b/ruff.toml @@ -20,6 +20,7 @@ select = [ ignore = [ "E501", # line length enforced by formatter "PLR0913", # argparse builders legitimately take > 7 args + "PLR0917", # same rationale as PLR0913; download_file's positional signature is public API "PLR2004", # magic numbers are allowed in tests / CLI "PLR0912", # branch count is bounded by CLAUDE.md (15) not ruff's default "PLR0915", # statement count same