From 600f469ca27871b44ba48ce90c249170bd4352d1 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Fri, 6 Oct 2023 07:17:08 +1300 Subject: [PATCH] Ignore env/directory Add yamllint to "make lint" --- .yamllint | 2 ++ Makefile | 1 + 2 files changed, 3 insertions(+) diff --git a/.yamllint b/.yamllint index 75c8a1f..0f77af4 100644 --- a/.yamllint +++ b/.yamllint @@ -2,6 +2,8 @@ # Based on ansible-lint config extends: default +ignore: | + env/ rules: braces: max-spaces-inside: 1 diff --git a/Makefile b/Makefile index de5f320..9d67a14 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,7 @@ lint: @echo "Linting with Ansible-lint" @echo ansible-lint . + yamllint . docker: clean