aboutsummaryrefslogtreecommitdiff
path: root/libpod/container_exec.go
diff options
context:
space:
mode:
authorPaul Holzinger <paul.holzinger@web.de>2021-02-11 22:28:35 +0100
committerMatthew Heon <mheon@redhat.com>2021-02-18 11:09:50 -0500
commit6470f970154c4d21e591fe18d59d1f471b51b5d7 (patch)
tree5927d60cbbe96af91ac8a0ececcc06e01496d2ad /libpod/container_exec.go
parent3bddeebf930efb872b99966df5553e0baf81834a (diff)
downloadpodman-6470f970154c4d21e591fe18d59d1f471b51b5d7.tar.gz
podman-6470f970154c4d21e591fe18d59d1f471b51b5d7.tar.bz2
podman-6470f970154c4d21e591fe18d59d1f471b51b5d7.zip
Enable golint linter
Use the golint linter and fix the reported problems. [NO TESTS NEEDED] Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'libpod/container_exec.go')
-rw-r--r--libpod/container_exec.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container_exec.go b/libpod/container_exec.go
index 443d631db..0d18b55ca 100644
--- a/libpod/container_exec.go
+++ b/libpod/container_exec.go
@@ -78,11 +78,11 @@ type ExecConfig struct {
type ExecSession struct {
// Id is the ID of the exec session.
// Named somewhat strangely to not conflict with ID().
- // nolint:stylecheck
+ // nolint:stylecheck,golint
Id string `json:"id"`
// ContainerId is the ID of the container this exec session belongs to.
// Named somewhat strangely to not conflict with ContainerID().
- // nolint:stylecheck
+ // nolint:stylecheck,golint
ContainerId string `json:"containerId"`
// State is the state of the exec session.