mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
enable the gofmt linter
This commit is contained in:
parent
b944882337
commit
f886be4cce
2 changed files with 3 additions and 2 deletions
|
@ -22,6 +22,7 @@ linters:
|
||||||
- depguard
|
- depguard
|
||||||
- goconst
|
- goconst
|
||||||
- goimports
|
- goimports
|
||||||
|
- gofmt
|
||||||
- gosimple
|
- gosimple
|
||||||
- ineffassign
|
- ineffassign
|
||||||
- misspell
|
- misspell
|
||||||
|
|
|
@ -116,7 +116,7 @@ var _ = BeforeSuite(func() {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
tlsConfig = &tls.Config{
|
tlsConfig = &tls.Config{
|
||||||
Certificates: []tls.Certificate{tls.Certificate{
|
Certificates: []tls.Certificate{{
|
||||||
Certificate: [][]byte{leafCert.Raw},
|
Certificate: [][]byte{leafCert.Raw},
|
||||||
PrivateKey: leafPrivateKey,
|
PrivateKey: leafPrivateKey,
|
||||||
}},
|
}},
|
||||||
|
@ -260,7 +260,7 @@ func generateTLSConfigWithLongCertChain(ca *x509.Certificate, caPrivateKey *rsa.
|
||||||
rawCerts[0] = leafCert.Raw
|
rawCerts[0] = leafCert.Raw
|
||||||
|
|
||||||
return &tls.Config{
|
return &tls.Config{
|
||||||
Certificates: []tls.Certificate{tls.Certificate{
|
Certificates: []tls.Certificate{{
|
||||||
Certificate: rawCerts,
|
Certificate: rawCerts,
|
||||||
PrivateKey: leafPrivateKey,
|
PrivateKey: leafPrivateKey,
|
||||||
}},
|
}},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue