mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
18 lines
400 B
Go
18 lines
400 B
Go
|
//go:build !lint
|
||
|
// +build !lint
|
||
|
|
||
|
package extensions
|
||
|
|
||
|
import (
|
||
|
"zotregistry.io/zot/pkg/api/config"
|
||
|
"zotregistry.io/zot/pkg/extensions/lint"
|
||
|
"zotregistry.io/zot/pkg/log"
|
||
|
)
|
||
|
|
||
|
func GetLinter(config *config.Config, log log.Logger) *lint.Linter {
|
||
|
log.Warn().Msg("lint extension is disabled because given zot binary doesn't" +
|
||
|
"include this feature please build a binary that does so")
|
||
|
|
||
|
return nil
|
||
|
}
|