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
This commit is contained in:
Daniel Lockyer 2022-02-07 13:02:10 +01:00
parent 2a1201ab30
commit af240816d8

View File

@ -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
});
};