From a6f6a37dea8a2ac9d0e936e7f830b7564ae25ca4 Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Tue, 24 Mar 2026 06:16:13 -0700 Subject: [PATCH] Add Ruff per-file-ignores --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 57db5b62f..b339015a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -107,6 +107,9 @@ fixable = ["ALL"] unfixable = [] dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" +[tool.ruff.lint.per-file-ignores] +"modules/caption/joytag.py" = ["RUF013"] # Per header comment: "Do not modify directly — sync from upstream" + [tool.ruff.format] quote-style = "double" indent-style = "space"