Skip to content

Commit

Permalink
chore: ignore linter on any for catch clause
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawkyZ committed Nov 12, 2024
1 parent 14ea44a commit 44c6a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snyk/common/download/downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class Downloader {
}
return await this.getCliExecutable(platform);
} catch (e) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
Logger.error(e);
throw new Error(ERRORS.DOWNLOAD_FAILED);
}
Expand Down

0 comments on commit 44c6a9f

Please sign in to comment.