From af240816d840f91e78729929be67d7d77242321d Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 7 Feb 2022 13:02:10 +0100 Subject: [PATCH] Added eslint exemption for camelcase line no issue - the new eslint bump seems to flag this line up for using camelcase - i'm not sure why this hasn't flagged before but it seems we want to keep the naming because the function name has the same linting exemption --- core/frontend/helpers/cancel_link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/frontend/helpers/cancel_link.js b/core/frontend/helpers/cancel_link.js index a3cd2f172a..f73f5e0f3e 100644 --- a/core/frontend/helpers/cancel_link.js +++ b/core/frontend/helpers/cancel_link.js @@ -44,6 +44,6 @@ module.exports = function cancelLabsWrapper() { helperName: 'cancel_link', helpUrl: 'https://ghost.org/docs/themes/members/' }, () => { - return cancel_link.apply(self, args); + return cancel_link.apply(self, args); // eslint-disable-line camelcase }); };