From 371c6635f794ec624b73b14f169ea33e59f9d384 Mon Sep 17 00:00:00 2001 From: Alexander Druz Date: Fri, 7 Jun 2024 12:48:49 +0200 Subject: [PATCH] Ignore non yet fixed Python vulnerability --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a2adc11..845fe982 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 51668 + --ignore 61496 --ignore 70612 pnpm audit --prod .PHONY: check-format