build: mask linter errors we can't fix

This commit is contained in:
Nick Craig-Wood 2018-05-05 11:49:03 +01:00
parent e80ae4e09c
commit aa5c5ec5d3
3 changed files with 5 additions and 5 deletions

View file

@ -44,7 +44,7 @@ func (a *auth) Response(resp *http.Response) error {
// The public storage URL - set Internal to true to read
// internal/service net URL
func (a *auth) StorageUrl(Internal bool) string {
func (a *auth) StorageUrl(Internal bool) string { // nolint
if a.storageURL != "" {
return a.storageURL
}
@ -66,7 +66,7 @@ func (a *auth) Token() string {
}
// The CDN url if available
func (a *auth) CdnUrl() string {
func (a *auth) CdnUrl() string { // nolint
if a.parentAuth == nil {
return ""
}