diff --git a/.golangci-soft.yml b/.golangci-soft.yml index ef456e0..5387adf 100644 --- a/.golangci-soft.yml +++ b/.golangci-soft.yml @@ -14,22 +14,17 @@ issues: linters: enable: - # - dupl - exhaustive - # - exhaustivestruct - goconst - godot - godox - gomnd - gomoddirectives - goprintffuncname - - ifshort - # - lll - misspell - nakedret - nestif - noctx - - nolintlint - prealloc - wrapcheck diff --git a/main.go b/main.go index 564a297..42b8ce2 100644 --- a/main.go +++ b/main.go @@ -49,6 +49,7 @@ func main() { Listen: *listen, Port: int64(*port), Factory: func(e wishlist.Endpoint) (*ssh.Server, error) { + // nolint: wrapcheck return wish.NewServer( wish.WithAddress(e.Address), wish.WithHostKeyPath(fmt.Sprintf(".ssh/%s", strings.ToLower(e.Name))),