From 58677ea0f7718d01087adbb1b21d864a4c8fda5f Mon Sep 17 00:00:00 2001 From: Chad Wilson Date: Fri, 13 Dec 2024 20:51:02 +0800 Subject: [PATCH] Ignore netspi URLs --- lib/tasks/static_checks.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/static_checks.rake b/lib/tasks/static_checks.rake index 8a535cc1a6..7c2ab3a838 100644 --- a/lib/tasks/static_checks.rake +++ b/lib/tasks/static_checks.rake @@ -9,7 +9,7 @@ namespace :static_checks do options = { :disable_external => should_not_run_external_url_checks?, - :ignore_urls => [/([https]:\/\/(localhost)|(github)|(blogs\.oracle)|(etsy)|(.*openjdk)|(.*\.stackexchange)|(askubuntu)|(gartner)|(linkedin)|(twitter):*)/], + :ignore_urls => [/http(s?):\/\/(localhost|github|blogs\.oracle|etsy|.*openjdk|.*\.stackexchange|askubuntu|gartner|linkedin|twitter|www.netspi)/], :allow_hash_href => true, :allow_missing_href => true, :check_external_hash => true,