From aa3cf45660b4063e8cc6bb6a450234166c21ac6f Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 5 Nov 2025 19:02:26 +0100 Subject: [PATCH] fix(Makefile): add yamllint as dedicated target --- .editorconfig | 5 ++++- Makefile | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index ebe51d3..e560cbb 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,4 +9,7 @@ indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = false -insert_final_newline = false \ No newline at end of file +insert_final_newline = false + +[Makefile] +indent_style = tab \ No newline at end of file diff --git a/Makefile b/Makefile index 3fc00c2..ba092b7 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,10 @@ unittests-helm: unittests-bash: ./unittests/bash/bats/bin/bats --pretty ./unittests/bash/tests/**/*.bats -.PHONY: helm +.PHONY: update-helm-dependencies update-helm-dependencies: helm dependency update - \ No newline at end of file + +.PHONY: yamllint +yamllint: + yamllint -c .yamllint . \ No newline at end of file