From b394f6bc493f1bbc2966361598cd370a0c5673cd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Apr 2026 19:06:10 +0000 Subject: [PATCH] fix: widen per-file-ignores globs in pyproject.toml to use ** patterns Agent-Logs-Url: https://github.com/NawfalMotii79/PLFM_RADAR/sessions/1aaab9fe-f41c-4e43-9391-99ce5a500686 Co-authored-by: JJassonn69 <83615043+JJassonn69@users.noreply.github.com> --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4f6ea09..e71b2d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,6 @@ select = [ [tool.ruff.lint.per-file-ignores] # Tests: allow unused args (fixtures), prints (debugging), commented code (examples) -"test_*.py" = ["ARG", "T20", "ERA"] +"**/test_*.py" = ["ARG", "T20", "ERA"] # Re-export modules: unused imports are intentional -"v7/hardware.py" = ["F401"] +"**/v7/hardware.py" = ["F401"]