Skip to content

Commit aa3cf45

Browse files
fix(Makefile): add yamllint as dedicated target
1 parent 064e51d commit aa3cf45

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ indent_size = 2
99
end_of_line = lf
1010
charset = utf-8
1111
trim_trailing_whitespace = false
12-
insert_final_newline = false
12+
insert_final_newline = false
13+
14+
[Makefile]
15+
indent_style = tab

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ unittests-helm:
2020
unittests-bash:
2121
./unittests/bash/bats/bin/bats --pretty ./unittests/bash/tests/**/*.bats
2222

23-
.PHONY: helm
23+
.PHONY: update-helm-dependencies
2424
update-helm-dependencies:
2525
helm dependency update
26-
26+
27+
.PHONY: yamllint
28+
yamllint:
29+
yamllint -c .yamllint .

0 commit comments

Comments
 (0)