From 132a6cd117e9c2c77d06e16ae836c74d6c4c3725 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Wed, 1 Jun 2022 14:19:30 -0400 Subject: [PATCH] Ignore bogus pylint "security" issue describes a crash when using a specific extension that we don't use, and really isn't a security issue at all. Ideally we'd upgrade pylint anyways, but we've fallen a bit behind and it isn't a trivial version bump. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e51006b216..8f1277c3e0 100644 --- a/Makefile +++ b/Makefile @@ -135,6 +135,7 @@ safety: ## Run `safety check` to check python dependencies for vulnerabilities. --ignore 42050 \ --ignore 42926 \ --ignore 42923 \ + --ignore 45185 \ --full-report -r $$req_file \ && echo -e '\n' \ || exit 1; \