Jelajahi Sumber

daemon: var-declaration: should omit type bool (revive)

    daemon/list.go:556:18: var-declaration: should omit type bool from declaration of var shouldSkip; it will be inferred from the right-hand side (revive)
                shouldSkip    bool = true
                              ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 4 tahun lalu
induk
melakukan
d61b7c1211
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      daemon/list.go

+ 1 - 1
daemon/list.go

@@ -553,7 +553,7 @@ func includeContainerInList(container *container.Snapshot, ctx *listContext) ite
 
 	if len(ctx.expose) > 0 || len(ctx.publish) > 0 {
 		var (
-			shouldSkip    bool = true
+			shouldSkip    = true
 			publishedPort nat.Port
 			exposedPort   nat.Port
 		)