Skip to content

Commit

Permalink
Fixup linting errors after updating linting deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Aug 6, 2024
1 parent 5432982 commit 55efce1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ async function run(): Promise<void> {
}

await addMatchers();
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any) {
core.setFailed(error.message);
}
Expand Down
2 changes: 1 addition & 1 deletion src/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export async function writeRegistryToFile(
newContents += line + os.EOL;
}
});
} catch (_) {
} catch {
// do nothing...
}

Expand Down

0 comments on commit 55efce1

Please sign in to comment.