diff --git a/cmd/cmd.go b/cmd/cmd.go index 5a451889..6d395805 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -1030,7 +1030,6 @@ func initializeKeypair() error { return nil } -//nolint:unused func waitForServer(ctx context.Context, client *api.Client) error { // wait for the server to start timeout := time.After(5 * time.Second) diff --git a/readline/readline.go b/readline/readline.go index ee461ae4..5215d617 100644 --- a/readline/readline.go +++ b/readline/readline.go @@ -81,7 +81,7 @@ func (i *Instance) Readline() (string, error) { defer func() { fd := int(syscall.Stdin) - // nolint: errcheck + //nolint:errcheck UnsetRawMode(fd, i.Terminal.termios) i.Terminal.rawmode = false }() diff --git a/server/download.go b/server/download.go index 5a735abf..937b6754 100644 --- a/server/download.go +++ b/server/download.go @@ -372,7 +372,7 @@ func downloadBlob(ctx context.Context, opts downloadOpts) error { return err } - // nolint: contextcheck + //nolint:contextcheck go download.Run(context.Background(), requestURL, opts.regOpts) } diff --git a/server/images.go b/server/images.go index 61740126..b8497eaa 100644 --- a/server/images.go +++ b/server/images.go @@ -661,7 +661,7 @@ func deleteUnusedLayers(skipModelPath *ModelPath, deleteMap map[string]struct{}) // save (i.e. delete from the deleteMap) any files used in other manifests manifest, _, err := GetManifest(fmp) if err != nil { - // nolint: nilerr + //nolint:nilerr return nil } diff --git a/server/upload.go b/server/upload.go index 9b52238a..aa775518 100644 --- a/server/upload.go +++ b/server/upload.go @@ -391,7 +391,7 @@ func uploadBlob(ctx context.Context, mp ModelPath, layer *Layer, opts *registryO return err } - // nolint: contextcheck + //nolint:contextcheck go upload.Run(context.Background(), opts) }