From 57892dadad8f678ad1b604855e6ebb9b9d78b244 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Wed, 1 Oct 2025 16:55:04 +0200 Subject: [PATCH] chore: exclude robustcheckout.py from linting This is vendored external code, we shouldn't be making local changes. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bf2ddc66c..2771cce2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,7 +93,8 @@ source = ["src/taskgraph/", "src/taskgraph/run-task/", "packages", "test"] ### Lint and Format [tool.ruff] extend-exclude = [ - "taskcluster/scripts/external_tools" + "taskcluster/scripts/external_tools", + "src/taskgraph/run-task/robustcheckout.py" ] line-length = 88