From 2f8377e94b5b32f4957c1f6c64acdd8bd2880e23 Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Tue, 31 Jan 2023 16:13:59 -0700 Subject: [PATCH] Remove nolint: gocyclo from relayapi routing setup --- relayapi/routing/routing.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/relayapi/routing/routing.go b/relayapi/routing/routing.go index c908e950..8ee0743e 100644 --- a/relayapi/routing/routing.go +++ b/relayapi/routing/routing.go @@ -34,10 +34,6 @@ import ( // The provided publicAPIMux MUST have `UseEncodedPath()` enabled or else routes will incorrectly // path unescape twice (once from the router, once from MakeRelayAPI). We need to have this enabled // so we can decode paths like foo/bar%2Fbaz as [foo, bar/baz] - by default it will decode to [foo, bar, baz] -// -// Due to Setup being used to call many other functions, a gocyclo nolint is -// applied: -// nolint: gocyclo func Setup( fedMux *mux.Router, cfg *config.FederationAPI,