From 5d8c30c8e9ac09bb55a19547699d73fc82fcd5b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= Date: Sat, 27 Dec 2025 02:58:23 +0100 Subject: [PATCH] ci: enable a few ruff checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These are all already functional. The only one missing is unused imports due to "add_pmbootstrap_to_import_path" Signed-off-by: Pablo Correa Gómez Part-of: --- .ci/ruff.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ruff.sh b/.ci/ruff.sh index d59d64f78..dc1ef698b 100755 --- a/.ci/ruff.sh +++ b/.ci/ruff.sh @@ -11,4 +11,4 @@ fi set -x # shellcheck disable=SC2046 -ruff check --ignore E501,F401,E722,W605 $(find .ci -name '*.py') +ruff check --ignore F401 $(find .ci -name '*.py')