From 682fa356278e342b93361bb61cfb0e598011b61f Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Fri, 3 May 2024 14:19:09 -0700 Subject: [PATCH] fix(linting): no-unused-vars --- lib/hosts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hosts.js b/lib/hosts.js index 6dac685f..9a08efd1 100644 --- a/lib/hosts.js +++ b/lib/hosts.js @@ -199,7 +199,7 @@ hosts.sourcehut = { `https://${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/archive/${maybeEncode(committish) || 'HEAD'}.tar.gz`, - bugstemplate: ({ user, project }) => null, + bugstemplate: () => null, extract: (url) => { let [, user, project, aux] = url.pathname.split('/', 4)