We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a61b9 commit 8912e7cCopy full SHA for 8912e7c
.github/dependabot.yml
@@ -4,7 +4,7 @@ updates:
4
directory: "/"
5
schedule:
6
interval: "daily"
7
- - package-ecosystem: github-actions
+ - package-ecosystem: "github-actions"
8
9
10
test.ts
@@ -11,7 +11,7 @@ async function runCommandWithArgs(args: string[]): Promise<boolean> {
11
);
12
try {
13
await childProcPromise;
14
- // eslint-disable-next-line no-explicit-any -- Specific error types are *still* not supported by TypeScript.
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- Specific error types are *still* not supported by TypeScript.
15
} catch (e: any) {
16
return false;
17
}
0 commit comments