From 4b0592520bf0429f6d924700470d2be926f02e77 Mon Sep 17 00:00:00 2001 From: Joe Haig Date: Fri, 20 Oct 2023 21:34:26 +0100 Subject: [PATCH] Add Response to the globals list For some reason Response is not being recognised even though it is part of Javascript (https://caniuse.com/?search=Response). It is added to the list of globals to allow `yarn standard` to pass. --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2a2e1e9cfe..8495018ff1 100644 --- a/package.json +++ b/package.json @@ -79,11 +79,12 @@ "globals": [ "GOVUK", "moj", - "Stickyfill" + "Stickyfill", + "Response" ], "ignore": [ "app/webpack/javascripts/vendor/", "spec/javascripts/helpers/" ] } -} +} \ No newline at end of file