From b41fe30bf378bc7029578cc5744e0e4abd39896a Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 1 Feb 2025 00:33:21 +0100 Subject: [PATCH] check/isolated --- sh/lint/ruff.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sh/lint/ruff.sh b/sh/lint/ruff.sh index 0352795..e15b701 100644 --- a/sh/lint/ruff.sh +++ b/sh/lint/ruff.sh @@ -12,9 +12,9 @@ rwx_ruff() { rwx_ruff_check() { local path="${1}" ruff check \ - --select "ALL" \ --ignore "D203,D213" \ - --ignore "COM812,ISC001" \ + --isolated \ + --select "ALL" \ "${path}" }