From a00af62dad140d08b88aa822776e4a7b613ab342 Mon Sep 17 00:00:00 2001 From: Viacheslav Sychov Date: Wed, 29 Mar 2023 12:37:15 +0200 Subject: [PATCH] fix: linter issues --- ext/git/client.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ext/git/client.go b/ext/git/client.go index fa470bcc..11a9a758 100644 --- a/ext/git/client.go +++ b/ext/git/client.go @@ -155,12 +155,12 @@ func NewClientExt(rawRepoURL string, root string, creds Creds, insecure bool, en // Returns a HTTP client object suitable for go-git to use using the following // pattern: -// - If insecure is true, always returns a client with certificate verification -// turned off. -// - If one or more custom certificates are stored for the repository, returns -// a client with those certificates in the list of root CAs used to verify -// the server's certificate. -// - Otherwise (and on non-fatal errors), a default HTTP client is returned. +// - If insecure is true, always returns a client with certificate verification +// turned off. +// - If one or more custom certificates are stored for the repository, returns +// a client with those certificates in the list of root CAs used to verify +// the server's certificate. +// - Otherwise (and on non-fatal errors), a default HTTP client is returned. func GetRepoHTTPClient(repoURL string, insecure bool, creds Creds, proxyURL string) *http.Client { // Default HTTP client var customHTTPClient = &http.Client{