diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-01-08 14:03:37 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-01-08 15:44:30 +0100 |
commit | 583ff5320f879ad714d3482ed0ae23c8eecfdf05 (patch) | |
tree | c968d679a94931dbc2085387a13d42ccde29d2e4 | |
parent | 0b53ff290232f2854a5df09be91fed46d670f47e (diff) | |
download | podman-583ff5320f879ad714d3482ed0ae23c8eecfdf05.tar.gz podman-583ff5320f879ad714d3482ed0ae23c8eecfdf05.tar.bz2 podman-583ff5320f879ad714d3482ed0ae23c8eecfdf05.zip |
fix lint - ignore image.ImageDeleteResponse definition
Golint claims that image.Image stutters but renaming the type would be a
breaking change which isn't worth the consequences.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
-rw-r--r-- | libpod/image/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/image/config.go b/libpod/image/config.go index 40e7fd496..bb84175a3 100644 --- a/libpod/image/config.go +++ b/libpod/image/config.go @@ -2,7 +2,7 @@ package image // ImageDeleteResponse is the response for removing an image from storage and containers // what was untagged vs actually removed -type ImageDeleteResponse struct { +type ImageDeleteResponse struct { //nolint Untagged []string `json:"untagged"` Deleted string `json:"deleted"` } |