From b6e5b23f8961e34bff15c545be3df72c278f935c Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Mon, 12 Jun 2023 19:09:37 +0100 Subject: [PATCH] Fix linting --- src/export/packer/packer.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/export/packer/packer.spec.ts b/src/export/packer/packer.spec.ts index 379d843eb6..ae59646cf9 100644 --- a/src/export/packer/packer.spec.ts +++ b/src/export/packer/packer.spec.ts @@ -41,6 +41,7 @@ describe("Packer", () => { }); it("should use a default prettify value", async () => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any const spy = vi.spyOn((Packer as any).compiler, "compile"); await Packer.toString(file, true); @@ -49,6 +50,7 @@ describe("Packer", () => { }); it("should use a prettify value", async () => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any const spy = vi.spyOn((Packer as any).compiler, "compile"); await Packer.toString(file, PrettifyType.WITH_4_BLANKS); @@ -57,6 +59,7 @@ describe("Packer", () => { }); it("should use an undefined prettify value", async () => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any const spy = vi.spyOn((Packer as any).compiler, "compile"); await Packer.toString(file, false);