From 23a92bf9440e17235e9e2d953951e966cb9eb7ec Mon Sep 17 00:00:00 2001 From: Oleksandr Bulanov Date: Wed, 23 Oct 2024 14:06:58 +0300 Subject: [PATCH] ignore 70612 safety vulnerability --- {{ cookiecutter.project_slug }}/api/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{ cookiecutter.project_slug }}/api/Makefile b/{{ cookiecutter.project_slug }}/api/Makefile index 16511fe..af29c80 100644 --- a/{{ cookiecutter.project_slug }}/api/Makefile +++ b/{{ cookiecutter.project_slug }}/api/Makefile @@ -21,7 +21,7 @@ collectstatic: check: ruff format . --check \ && ruff check . \ - && safety check \ + && safety check --ignore=70612 \ && make check-migrations \ check-fix: