From 04f3c33bb9a464ec57712e3f93baec207b04da98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20Kaan=20Karako=C3=A7?= Date: Sat, 2 Dec 2023 23:11:57 +0300 Subject: [PATCH] Fix unexpected any lint problem --- packages/modules/couchbase/src/couchbase-container.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/modules/couchbase/src/couchbase-container.ts b/packages/modules/couchbase/src/couchbase-container.ts index 8641db1f4..e2cb9c29d 100644 --- a/packages/modules/couchbase/src/couchbase-container.ts +++ b/packages/modules/couchbase/src/couchbase-container.ts @@ -82,6 +82,7 @@ export class CouchbaseContainer extends GenericContainer { return this; } + // eslint-disable-next-line @typescript-eslint/no-explicit-any private async doHttpRequest(host: string, port: number, path: string, method: string, body: any, auth = false) { try { return await fetch(`http://${host}:${port}${path}`, {