From 55efce1302192875412ccccd0b81e5923131dc19 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Tue, 6 Aug 2024 12:25:48 -0400 Subject: [PATCH] Fixup linting errors after updating linting deps --- src/index.ts | 1 + src/registry.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 6c6309ce..0440a5c2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -71,6 +71,7 @@ async function run(): Promise { } await addMatchers(); + // eslint-disable-next-line @typescript-eslint/no-explicit-any } catch (error: any) { core.setFailed(error.message); } diff --git a/src/registry.ts b/src/registry.ts index d61ff3f6..940ba348 100644 --- a/src/registry.ts +++ b/src/registry.ts @@ -45,7 +45,7 @@ export async function writeRegistryToFile( newContents += line + os.EOL; } }); - } catch (_) { + } catch { // do nothing... }