We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab1d686 commit d901df3Copy full SHA for d901df3
1 file changed
extensions/git/src/commands.ts
@@ -1433,7 +1433,7 @@ export class CommandCenter {
1433
.replace(/^error: /mi, '')
1434
.replace(/^> husky.*$/mi, '')
1435
.split(/[\r\n]/)
1436
- .filter((line: any) => !!line)
+ .filter((line: string) => !!line)
1437
[0];
1438
1439
message = hint
@@ -1523,4 +1523,4 @@ export class CommandCenter {
1523
dispose(): void {
1524
this.disposables.forEach(d => d.dispose());
1525
}
1526
-}
+}
0 commit comments