From ec4c708e77fc5bc45d8e534e58924cfbdd6e2062 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Thu, 14 Mar 2024 19:13:33 +0100 Subject: [PATCH] Dsiable no-vulnerable-javascript-libraries webhint rule, as it sometimes has issues with communicating with the api it depends on --- .hintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.hintrc b/.hintrc index 7733cf1..29b634a 100644 --- a/.hintrc +++ b/.hintrc @@ -44,6 +44,7 @@ "axe/structure": "error", "axe/tables": "error", "axe/text-alternatives": "error", - "axe/time-and-media": "error" + "axe/time-and-media": "error", + "no-vulnerable-javascript-libraries": "off" } }