From 3fc5adcb4ff13402aa54cdcb23fcec38b1062aa9 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Fri, 3 Apr 2026 15:16:14 +0400 Subject: [PATCH] Remove security and quality targets from Makefile Removed security and quality targets from Makefile. Signed-off-by: Thomas Schmelzer --- Makefile | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/Makefile b/Makefile index 2ec821ce..33fde184 100644 --- a/Makefile +++ b/Makefile @@ -18,26 +18,6 @@ post-validate:: ## Custom targets -##@ Security - -.PHONY: security -security: install ## run security scans (pip-audit and bandit) - @printf "${BLUE}[INFO] Running pip-audit for dependency vulnerabilities...${RESET}\n" - @${UVX_BIN} pip-audit - @printf "${BLUE}[INFO] Running bandit security scan...${RESET}\n" - @${UVX_BIN} bandit -r ${SOURCE_FOLDER} -ll -q -c pyproject.toml - -##@ Quality - -.PHONY: semgrep -semgrep: install ## run Semgrep static analysis (numpy rules) - @printf "${BLUE}[INFO] Running Semgrep (numpy rules)...${RESET}\n" - @if [ -d ${SOURCE_FOLDER} ]; then \ - ${UVX_BIN} semgrep --config .rhiza/semgrep.yml ${SOURCE_FOLDER}; \ - else \ - printf "${YELLOW}[WARN] SOURCE_FOLDER '${SOURCE_FOLDER}' not found, skipping semgrep.${RESET}\n"; \ - fi - .PHONY: adr adr: install-gh-aw ## Create a new Architecture Decision Record (ADR) using AI assistance @echo "Creating a new ADR..."