From 6ddda0fa4b95b3090d08fba9ce26db4f9cf640b1 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 11 Aug 2020 23:19:00 +0200
Subject: [PATCH] chore: fix lint

---
 lib/platform/github/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/platform/github/index.ts b/lib/platform/github/index.ts
index eead7e621a..09bb5a4af5 100644
--- a/lib/platform/github/index.ts
+++ b/lib/platform/github/index.ts
@@ -376,7 +376,7 @@ export async function initRepo({
           logger.info('Fork deleted');
           if (is.nonEmptyArray(existingRepos)) {
             existingRepos = existingRepos.filter(
-              (repo) => repo !== config.repository
+              (existingRepo) => existingRepo !== config.repository
             );
           }
         } catch (deleteErr) {
-- 
GitLab