Files
zot/pkg/extensions/lint/lint_disabled.go
T
2024-01-31 20:34:07 -08:00

19 lines
332 B
Go

//go:build !lint
// +build !lint
package lint
import (
godigest "github.com/opencontainers/go-digest"
storageTypes "zotregistry.dev/zot/pkg/storage/types"
)
type Linter struct{}
func (linter *Linter) Lint(repo string, manifestDigest godigest.Digest,
imageStore storageTypes.ImageStore,
) (bool, error) {
return true, nil
}