From f518e1acff97bb46052c074b5688055ca2943e9d Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Tue, 4 Aug 2026 20:01:57 -0400 Subject: [PATCH 1/2] [FIX] markdownlint: node version upgraded -> 26.x --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index affda44..a84559c 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,8 @@ dependencies: @echo "################################################################################" lint/markdown: - markdownlint '**/*.md' --ignore node_modules && echo '✔ Your code looks good.' + markdownlint --config .markdownlint.json '**/*.md' && echo '✔ Your code looks good.' + lint/yaml: yamllint --stric . && echo '✔ Your code looks good.' From 07f6c727abb2b23466eb622330abf85b65ca229b Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Tue, 4 Aug 2026 23:36:50 -0400 Subject: [PATCH 2/2] [BUGFIX] Makefile: yamlint parameter fixed. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a84559c..eccfb51 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ lint/markdown: markdownlint --config .markdownlint.json '**/*.md' && echo '✔ Your code looks good.' lint/yaml: - yamllint --stric . && echo '✔ Your code looks good.' + yamllint --strict . && echo '✔ Your code looks good.' lint: lint/markdown lint/yaml test/styling test/static