From 571ccf0923a9515097894c29923c56f3efa3ce18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dafydd=20Ll=C5=B7r=20Pearson?= Date: Sun, 27 Oct 2024 10:24:00 +0000 Subject: [PATCH] chore: Turn off `no-empty-function` lint rule in Storybook files (#3858) --- editor.planx.uk/.eslintrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/editor.planx.uk/.eslintrc b/editor.planx.uk/.eslintrc index 54d1d6fbfd..98bfbe6b35 100644 --- a/editor.planx.uk/.eslintrc +++ b/editor.planx.uk/.eslintrc @@ -97,6 +97,12 @@ "extends": [ "plugin:testing-library/react" ] + }, + { + "files": [ "*.stories.tsx" ], + "rules": { + "@typescript-eslint/no-empty-function": "off" + } } ] } \ No newline at end of file