forked from TrueCloudLab/lego
chore: update linter (#1767)
Co-authored-by: Dominik Menke <git@dmke.org>
This commit is contained in:
parent
2431f83100
commit
a7b11e0447
6 changed files with 11 additions and 7 deletions
2
.github/workflows/pr.yml
vendored
2
.github/workflows/pr.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GO_VERSION: 1.19
|
||||
GOLANGCI_LINT_VERSION: v1.49.0
|
||||
GOLANGCI_LINT_VERSION: v1.50.1
|
||||
HUGO_VERSION: 0.54.0
|
||||
CGO_ENABLED: 0
|
||||
LEGO_E2E_TESTS: CI
|
||||
|
|
|
@ -204,3 +204,7 @@
|
|||
[[issues.exclude-rules]]
|
||||
path = "providers/dns/sakuracloud/client.go"
|
||||
text = "mu is a global variable"
|
||||
|
||||
[[issues.exclude-rules]]
|
||||
path = "providers/dns/hosttech/internal/client_test.go"
|
||||
text = "Duplicate words \\(0\\) found"
|
||||
|
|
|
@ -53,7 +53,7 @@ func (c *SolverManager) SetDNS01Provider(p challenge.Provider, opts ...dns01.Cha
|
|||
return nil
|
||||
}
|
||||
|
||||
// Remove Remove a challenge type from the available solvers.
|
||||
// Remove removes a challenge type from the available solvers.
|
||||
func (c *SolverManager) Remove(chlgType challenge.Type) {
|
||||
delete(c.solvers, chlgType)
|
||||
}
|
||||
|
|
|
@ -65,7 +65,7 @@ func (t *TokenTransport) Client() *http.Client {
|
|||
return &http.Client{Transport: t}
|
||||
}
|
||||
|
||||
// Wrap Wrap a HTTP client Transport with the TokenTransport.
|
||||
// Wrap wraps an HTTP client Transport with the TokenTransport.
|
||||
func (t *TokenTransport) Wrap(client *http.Client) *http.Client {
|
||||
backup := client.Transport
|
||||
t.Transport = backup
|
||||
|
|
|
@ -54,7 +54,7 @@ func (t *TokenTransport) Client() *http.Client {
|
|||
return &http.Client{Transport: t}
|
||||
}
|
||||
|
||||
// Wrap Wrap a HTTP client Transport with the TokenTransport.
|
||||
// Wrap wraps an HTTP client Transport with the TokenTransport.
|
||||
func (t *TokenTransport) Wrap(client *http.Client) *http.Client {
|
||||
backup := client.Transport
|
||||
t.Transport = backup
|
||||
|
|
|
@ -167,21 +167,21 @@ func TestSplitDomain(t *testing.T) {
|
|||
expectedZone: "domain.com",
|
||||
},
|
||||
{
|
||||
desc: "with a sub domain",
|
||||
desc: "with a subdomain",
|
||||
domain: "my.domain.com",
|
||||
zones: []string{"domain.com"},
|
||||
expectedOwner: "_acme-challenge.my",
|
||||
expectedZone: "domain.com",
|
||||
},
|
||||
{
|
||||
desc: "with a sub domain in a zone",
|
||||
desc: "with a subdomain in a zone",
|
||||
domain: "my.sub.domain.com",
|
||||
zones: []string{"sub.domain.com", "domain.com"},
|
||||
expectedOwner: "_acme-challenge.my",
|
||||
expectedZone: "sub.domain.com",
|
||||
},
|
||||
{
|
||||
desc: "with a sub sub domain",
|
||||
desc: "with a sub-subdomain",
|
||||
domain: "my.sub.domain.com",
|
||||
zones: []string{"domain1.com", "domain.com"},
|
||||
expectedOwner: "_acme-challenge.my.sub",
|
||||
|
|
Loading…
Reference in a new issue