Skip to content

Commit 55efce1

Browse files
author
Robert Jackson
committed
Fixup linting errors after updating linting deps
1 parent 5432982 commit 55efce1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ async function run(): Promise<void> {
7171
}
7272

7373
await addMatchers();
74+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
7475
} catch (error: any) {
7576
core.setFailed(error.message);
7677
}

src/registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export async function writeRegistryToFile(
4545
newContents += line + os.EOL;
4646
}
4747
});
48-
} catch (_) {
48+
} catch {
4949
// do nothing...
5050
}
5151

0 commit comments

Comments
 (0)