From 2c5cabc20b3df00a9091d3c81dffdf23e09bed14 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Mon, 16 May 2022 11:42:02 -0700 Subject: [PATCH] use eslint-disable not tslint:disable --- src/vfs/virtualFileSystemWithWatch.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vfs/virtualFileSystemWithWatch.ts b/src/vfs/virtualFileSystemWithWatch.ts index e73b2ec2de5..fc7645d5ada 100644 --- a/src/vfs/virtualFileSystemWithWatch.ts +++ b/src/vfs/virtualFileSystemWithWatch.ts @@ -517,7 +517,7 @@ namespace ts.VirtualFS { } setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): any { - // tslint:disable:no-restricted-globals + // eslint-disable-next-line no-restricted-globals setTimeout(callback, ms, ...args); } @@ -526,8 +526,8 @@ namespace ts.VirtualFS { } setImmediate(callback: (...args: any[]) => void, ...args: any[]): any { + // eslint-disable-next-line no-restricted-globals setImmediate(callback, ...args); - // tslint:enable:no-restricted-globals } clearImmediate(_timeoutId: any): void {