From 68330cf853ae5fd610c79674472e88fc06305af1 Mon Sep 17 00:00:00 2001 From: DanChov Date: Fri, 6 Mar 2026 12:57:08 +0100 Subject: [PATCH] CI: removed ruff --- .github/workflows/security_check.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/security_check.yml b/.github/workflows/security_check.yml index 89c14145..4d781818 100644 --- a/.github/workflows/security_check.yml +++ b/.github/workflows/security_check.yml @@ -19,7 +19,7 @@ jobs: run: | # Upgrade pip and install security/linting tools python -m pip install --upgrade pip - pip install bandit detect-secrets flake8 flake8-json ruff + pip install bandit detect-secrets flake8 flake8-json - name: Run Bandit (Security Scan) # Scan the Mergin folder for vulnerabilities, excluding the test directory @@ -29,10 +29,6 @@ jobs: # Scan the plugin directory for hardcoded secrets/credentials run: detect-secrets scan ./Mergin/ --all-files - - name: Run Ruff (Linting) - # Excluding Mergin/test - run: ruff check ./Mergin/ --line-length 120 --exclude Mergin/test - - name: Run Flake8 (Style Check) # Style enforcement using MerginMaps standards # Ignoring E501 (line length) and W503 (operator line breaks)