Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Aug 9, 2020
1 parent 896dfdb commit afe4b95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export class Database {
): Promise<Build | null> {
const build = await this._builds.findOne(
{
// @ts-expect-error
// @ts-expect-error because the deno_mongo typings are incorrect
"options.moduleName": name,
"options.version": version,
},
Expand Down
2 changes: 1 addition & 1 deletion utils/webhooks.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export type WebhookPayloadPush = {
forced: boolean;
base_ref: null;
compare: string;
commits: Array<any>;
commits: Array<unknown>;
head_commit: null;
repository: PayloadRepository;
pusher: WebhookPayloadPushPusher;
Expand Down

0 comments on commit afe4b95

Please sign in to comment.