mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
87fc941b3c
closes #536 Signed-off-by: Lisca Ana-Roberta <ana.kagome@yahoo.com>
18 lines
365 B
Go
18 lines
365 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 {
|
|
if config.Extensions == nil {
|
|
return lint.NewLinter(nil, log)
|
|
}
|
|
|
|
return lint.NewLinter(config.Extensions.Lint, log)
|
|
}
|