From b81b32eaa193f29848609740f06fccb0dd2df0ac Mon Sep 17 00:00:00 2001 From: Alexander Druz Date: Thu, 11 Jul 2024 14:15:11 +0200 Subject: [PATCH] Ignore scikit-learn vulnerability in audit target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 845fe982..e0d3b65b 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ clean: ## clean project .PHONY: audit audit: ## Audit project dependencies poetry export --without-hashes | poetry run safety check --full-report --stdin \ - --ignore 61496 --ignore 70612 + --ignore 61496 --ignore 70612 --ignore 71596 pnpm audit --prod .PHONY: check-format