From f7e0857546c61c438ae85a61f517625a8245232c Mon Sep 17 00:00:00 2001 From: Vishrut Sharma Date: Mon, 23 Sep 2024 13:48:16 -0700 Subject: [PATCH] Remove redundant @typescript-eslint/no-explicit-any suppression (#24091) Removed redundant @typescript-eslint/no-explicit-any suppression. Resolves https://github.com/microsoft/vscode-python/issues/24076 --- src/client/common/types.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/common/types.ts b/src/client/common/types.ts index 035e6ec4638b..71813c71904e 100644 --- a/src/client/common/types.ts +++ b/src/client/common/types.ts @@ -24,7 +24,6 @@ import { EnvironmentVariables } from './variables/types'; import { ITestingSettings } from '../testing/configuration/types'; export interface IDisposable { - // eslint-disable-next-line @typescript-eslint/no-explicit-any dispose(): void | undefined | Promise; }