From eaec5e5c65dff65c497b6bbd61944f35f4425356 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 13 Mar 2026 13:44:18 -0400 Subject: [PATCH] Fix gofumpt not working --- plugins.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins.ts b/plugins.ts index f6f36c5..1e43ca0 100644 --- a/plugins.ts +++ b/plugins.ts @@ -132,6 +132,10 @@ async function getFullRepoName(username: string, repoName: string) { return repoName; } const fullName = `dprint-plugin-${repoName}`; + // todo: hardcode more repos here + if (username === "jakebailey" && fullName === "dprint-plugin-gofumpt") { + return fullName; + } if (await checkGithubRepoExists(username, fullName)) { return fullName; } else {