Skip to content

Commit 8912e7c

Browse files
committed
Fix lint error
1 parent 16a61b9 commit 8912e7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "daily"
7-
- package-ecosystem: github-actions
7+
- package-ecosystem: "github-actions"
88
directory: "/"
99
schedule:
1010
interval: "daily"

test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async function runCommandWithArgs(args: string[]): Promise<boolean> {
1111
);
1212
try {
1313
await childProcPromise;
14-
// eslint-disable-next-line no-explicit-any -- Specific error types are *still* not supported by TypeScript.
14+
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Specific error types are *still* not supported by TypeScript.
1515
} catch (e: any) {
1616
return false;
1717
}

0 commit comments

Comments
 (0)