mirror of https://github.com/docker/cli.git
lint: update some nolint comments:
``` cli/command/container/hijack.go:188:1⚠️ nolint directive did not match any issue (nolint) cli/command/image/trust.go:346:1⚠️ nolint directive did not match any issue (nolint) cli/command/manifest/push.go:211:1⚠️ nolint directive did not match any issue (nolint) cli/command/trust/signer_remove.go:79:1⚠️ nolint directive did not match any issue (nolint) internal/pkg/containerized/snapshot.go:95:1⚠️ nolint directive did not match any issue (nolint) internal/pkg/containerized/snapshot.go:138:1⚠️ nolint directive did not match any issue (nolint) ``` Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
d0df532a25
commit
868adb13c6
|
@ -185,7 +185,6 @@ func setRawTerminal(streams command.Streams) error {
|
||||||
return streams.Out().SetRawTerminal()
|
return streams.Out().SetRawTerminal()
|
||||||
}
|
}
|
||||||
|
|
||||||
// nolint: unparam
|
|
||||||
func restoreTerminal(streams command.Streams, in io.Closer) error {
|
func restoreTerminal(streams command.Streams, in io.Closer) error {
|
||||||
streams.In().RestoreTerminal()
|
streams.In().RestoreTerminal()
|
||||||
streams.Out().RestoreTerminal()
|
streams.Out().RestoreTerminal()
|
||||||
|
|
|
@ -329,7 +329,6 @@ func convertTarget(t client.Target) (target, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// TagTrusted tags a trusted ref
|
// TagTrusted tags a trusted ref
|
||||||
// nolint: interfacer
|
|
||||||
func TagTrusted(ctx context.Context, cli command.Cli, trustedRef reference.Canonical, ref reference.NamedTagged) error {
|
func TagTrusted(ctx context.Context, cli command.Cli, trustedRef reference.Canonical, ref reference.NamedTagged) error {
|
||||||
// Use familiar references when interacting with client and output
|
// Use familiar references when interacting with client and output
|
||||||
familiarRef := reference.FamiliarString(ref)
|
familiarRef := reference.FamiliarString(ref)
|
||||||
|
|
|
@ -208,7 +208,6 @@ func buildBlobRequestList(imageManifest types.ImageManifest, repoName reference.
|
||||||
return blobReqs, nil
|
return blobReqs, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// nolint: interfacer
|
|
||||||
func buildPutManifestRequest(imageManifest types.ImageManifest, targetRef reference.Named) (mountRequest, error) {
|
func buildPutManifestRequest(imageManifest types.ImageManifest, targetRef reference.Named) (mountRequest, error) {
|
||||||
refWithoutTag, err := reference.WithName(targetRef.Name())
|
refWithoutTag, err := reference.WithName(targetRef.Name())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -78,7 +78,6 @@ func isLastSignerForReleases(roleWithSig data.Role, allRoles []client.RoleWithSi
|
||||||
|
|
||||||
// removeSingleSigner attempts to remove a single signer and returns whether signer removal happened.
|
// removeSingleSigner attempts to remove a single signer and returns whether signer removal happened.
|
||||||
// The signer not being removed doesn't necessarily raise an error e.g. user choosing "No" when prompted for confirmation.
|
// The signer not being removed doesn't necessarily raise an error e.g. user choosing "No" when prompted for confirmation.
|
||||||
// nolint: unparam
|
|
||||||
func removeSingleSigner(cli command.Cli, repoName, signerName string, forceYes bool) (bool, error) {
|
func removeSingleSigner(cli command.Cli, repoName, signerName string, forceYes bool) (bool, error) {
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
imgRefAndAuth, err := trust.GetImageReferencesAndAuth(ctx, nil, image.AuthResolver(cli), repoName)
|
imgRefAndAuth, err := trust.GetImageReferencesAndAuth(ctx, nil, image.AuthResolver(cli), repoName)
|
||||||
|
|
Loading…
Reference in New Issue