Add validate-json-yaml target to Makefile lint

This commit is contained in:
Raffaele Di Fazio 2026-04-20 12:13:10 +02:00
parent 14b5c83ae8
commit d1372bc8b0

View File

@ -55,7 +55,12 @@ licensecheck:
#? lint: Run all the linters
.PHONY: lint
lint: licensecheck go-lint
lint: licensecheck go-lint validate-json-yaml
#? validate-json-yaml: Validate JSON and YAML files
.PHONY: validate-json-yaml
validate-json-yaml:
bash scripts/validate-json-yaml.sh
#? crd: Generates CRD using controller-gen and copy it into chart
.PHONY: crd