From e1cfcf54eeb768b5957f3c142b9aa7ec7be93914 Mon Sep 17 00:00:00 2001 From: edleeks87 Date: Thu, 7 Apr 2022 15:22:19 +0100 Subject: [PATCH] chore(tags): disable eslint for use of any type in prop interface --- src/__internal__/utils/helpers/tags/tags.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/__internal__/utils/helpers/tags/tags.ts b/src/__internal__/utils/helpers/tags/tags.ts index 59c77abf86..ed42aea772 100644 --- a/src/__internal__/utils/helpers/tags/tags.ts +++ b/src/__internal__/utils/helpers/tags/tags.ts @@ -1,6 +1,7 @@ interface DataProps { "data-element"?: string; "data-role"?: string; + // eslint-disable-next-line @typescript-eslint/no-explicit-any [restKeys: string]: any; }