import: drop now-unused nolint:ireturn on Get · Entire

import: drop now-unused nolint:ireturn on Get

cb2e7e0→main·

computermode·3w ago·1 file·+0 added/-2 removed

After merging main, the golangci config no longer flags Get's interface return for ireturn, so the //nolint:ireturn directive is unused and nolintlint fails CI. Remove it.

Co-Authored-By: Claude Opus 4.8 noreply@anthropic.com

Sessions

d651e65d45a9View transcript

[?
push up draft PRClaude Code·Opus 4.8·1 step](/content/gh/entireio/cli/session/65bd6f32-b465-4fea-807f-040f6d9ac558#timeline-d651e65d45a9/index.html)

Changes

1

74 unmodified lines

75
76
77
78
79
78
79
80

74 unmodified lines

}

// Get returns the importer registered under name.
//
//nolint:ireturn // Importer is the intended polymorphic seam returned to callers.
func Get(name string) (Importer, bool) {
    for _, imp := range importers {
        if imp.Name() == name {

Mcmd/entire/cli/agentimport/agentimport.go-2