From d1372bc8b06c4ed6f63aba9b358ed32dee9af250 Mon Sep 17 00:00:00 2001 From: Raffaele Di Fazio Date: Mon, 20 Apr 2026 12:13:10 +0200 Subject: [PATCH] Add validate-json-yaml target to Makefile lint --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dc0d00b25..c7f800365 100644 --- a/Makefile +++ b/Makefile @@ -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