diff --git a/lib/platform/bitbucket/index.ts b/lib/platform/bitbucket/index.ts
index c7d2d721b93497d20d632120021d6bc36e385ba5..afc4851079e2e82ba0f78d8b9218c538e704b8c3 100644
--- a/lib/platform/bitbucket/index.ts
+++ b/lib/platform/bitbucket/index.ts
@@ -395,6 +395,7 @@ export async function ensureIssueClosing(title: string) {
   }
 }
 
+// eslint-disable-next-line @typescript-eslint/no-unused-vars
 export function addAssignees(_prNr: number, _assignees: string[]) {
   // Bitbucket supports "participants" and "reviewers" so does not seem to have the concept of "assignee"
   logger.warn('Cannot add assignees');
@@ -420,6 +421,7 @@ export /* istanbul ignore next */ function deleteLabel() {
   throw new Error('deleteLabel not implemented');
 }
 
+/* eslint-disable @typescript-eslint/no-unused-vars */
 export function ensureComment(
   _prNo: number,
   _topic: string | null,
@@ -434,6 +436,7 @@ export function ensureCommentRemoval(_prNo: number, _topic: string) {
   // The api does not support removing comments
   return Promise.resolve();
 }
+/* eslint-enable @typescript-eslint/no-unused-vars */
 
 // istanbul ignore next
 function matchesState(state: string, desiredState: string) {