From 6218c4593d4117d2f575459dc48c90b4f4b57852 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sun, 19 Apr 2026 15:08:09 -0300 Subject: [PATCH] ci(atlasbot): tighten lint scope to high-signal checks --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index dacaf65..082f2a2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -218,9 +218,9 @@ PY ;; esac set +e - docker buildx build --platform "${TEST_PLATFORM_RESOLVED}" --target test --load -t atlasbot-test . \ + docker buildx build --platform "${TEST_PLATFORM_RESOLVED}" --target test --load -t atlasbot-test . \ && docker run --rm -v "$PWD/build:/out" atlasbot-test \ - python -m ruff check atlasbot testing scripts --select E,F,W,B,C90,I,PLR,RUF,SIM,UP,ARG --ignore E501 \ + python -m ruff check atlasbot scripts --select E,F,W,B,C90,I,RUF,ARG --ignore E501 \ && docker run --rm -v "$PWD/build:/out" atlasbot-test \ python scripts/check_file_sizes.py --root atlasbot --max-lines 500 \ && docker run --rm -v "$PWD/build:/out" atlasbot-test \