ci: remove stylecheck linter

It is to be merged into staticcheck linter in golangci-lint v2.0.0.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2025-03-27 16:06:57 -07:00
parent 5aa035c69c
commit f4f2580b0d
33 changed files with 101 additions and 116 deletions

View File

@@ -89,7 +89,7 @@ type PauseUnPauseOptions struct {
type PauseUnpauseReport struct {
Err error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
RawInput string
}
@@ -103,7 +103,7 @@ type StopOptions struct {
type StopReport struct {
Err error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
RawInput string
}
@@ -125,7 +125,7 @@ type KillOptions struct {
type KillReport struct {
Err error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
RawInput string
}
@@ -139,7 +139,7 @@ type RestartOptions struct {
type RestartReport struct {
Err error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
RawInput string
}
@@ -187,7 +187,7 @@ type CopyOptions struct {
}
type CommitReport struct {
Id string //nolint:revive,stylecheck
Id string //nolint:revive
}
type ContainerExportOptions struct {
@@ -235,7 +235,7 @@ type RestoreOptions struct {
type RestoreReport = types.RestoreReport
type ContainerCreateReport struct {
Id string //nolint:revive,stylecheck
Id string //nolint:revive
}
// AttachOptions describes the cli and other values
@@ -315,7 +315,7 @@ type ContainerStartOptions struct {
// ContainerStartReport describes the response from starting
// containers from the cli
type ContainerStartReport struct {
Id string //nolint:revive,stylecheck
Id string //nolint:revive
RawInput string
Err error
ExitCode int
@@ -360,7 +360,7 @@ type ContainerRunOptions struct {
// a container
type ContainerRunReport struct {
ExitCode int
Id string //nolint:revive,stylecheck
Id string //nolint:revive
}
// ContainerCleanupOptions are the CLI values for the
@@ -378,7 +378,7 @@ type ContainerCleanupOptions struct {
// container cleanup
type ContainerCleanupReport struct {
CleanErr error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
RawInput string
RmErr error
RmiErr error
@@ -395,7 +395,7 @@ type ContainerInitOptions struct {
// container init
type ContainerInitReport struct {
Err error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
RawInput string
}
@@ -418,7 +418,7 @@ type ContainerUnmountOptions struct {
// ContainerMountReport describes the response from container mount
type ContainerMountReport struct {
Err error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
Name string
Path string
}
@@ -426,7 +426,7 @@ type ContainerMountReport struct {
// ContainerUnmountReport describes the response from umounting a container
type ContainerUnmountReport struct {
Err error
Id string //nolint:revive,stylecheck
Id string //nolint:revive
}
// ContainerPruneOptions describes the options needed
@@ -445,7 +445,7 @@ type ContainerPortOptions struct {
// ContainerPortReport describes the output needed for
// the CLI to output ports
type ContainerPortReport struct {
Id string //nolint:revive,stylecheck
Id string //nolint:revive
Ports []nettypes.PortMapping
}