From 41249dd2d03300fc78e47f01f96df0e8c9edb520 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Mon, 22 May 2023 08:22:25 -0400 Subject: [PATCH] fix linting --- lib/modules/platform/bitbucket/comments.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/modules/platform/bitbucket/comments.ts b/lib/modules/platform/bitbucket/comments.ts index a683b6b8e87932..106a638971530b 100644 --- a/lib/modules/platform/bitbucket/comments.ts +++ b/lib/modules/platform/bitbucket/comments.ts @@ -20,11 +20,14 @@ async function getComments( config: CommentsConfig, prNo: number ): Promise { - const comments = (await bitbucketHttp.getJson>( - `/2.0/repositories/${config.repository}/pullrequests/${prNo}/comments`, { - paginate: true - } - )).body.values; + const comments = ( + await bitbucketHttp.getJson>( + `/2.0/repositories/${config.repository}/pullrequests/${prNo}/comments`, + { + paginate: true, + } + ) + ).body.values; logger.debug(`Found ${comments.length} comments`); return comments;