From 85b3575fef9cf3cbd3405c16553dce0b43db7ce5 Mon Sep 17 00:00:00 2001 From: Bart Mesuere Date: Thu, 20 Jun 2024 10:23:51 +0200 Subject: [PATCH] lint --- tests/commands/peptfilter.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/commands/peptfilter.test.ts b/tests/commands/peptfilter.test.ts index ad1cfff1..0318fde2 100644 --- a/tests/commands/peptfilter.test.ts +++ b/tests/commands/peptfilter.test.ts @@ -4,6 +4,7 @@ import * as mock from 'mock-stdin'; let output: string[]; let error: string[]; +// eslint-disable-next-line @typescript-eslint/no-unused-vars const writeSpy = jest .spyOn(process.stdout, "write") .mockImplementation((data: unknown) => { output.push(data as string); return true; });