From 0efe67c53eb35e9dca18b7836d1a63d57a2cf07f Mon Sep 17 00:00:00 2001 From: Yesha Mavani Date: Mon, 28 Oct 2024 09:52:10 +0530 Subject: [PATCH] feat(core): lint fixes gh-2158 --- packages/core/src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 9c34db7795..7cd5cf77ac 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -17,6 +17,7 @@ export interface RepositoryOverridingOptions { /**restricts user to pass createdOn and modifiedOn fields in the request body * and only current date will be set in the database */ restrictDateModification: boolean; + //eslint-disable-next-line @typescript-eslint/no-explicit-any [property: string]: any; //NOSONAR } export type OASPathDefinition = AnyObject;