From 8b505586e31c31af27d3f3152da1ef0bd34c753e Mon Sep 17 00:00:00 2001 From: Lukas Audzevicius <laudzevicius24@hotmail.com> Date: Wed, 13 Nov 2024 12:58:30 +0000 Subject: [PATCH] (BUGFIX) Correcting typo in linter exclusions Following a Linter error tracking, it was found that the linter was not excluding the correct files. This commit corrects the typo in the linter exclusions. --- config_defaults.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_defaults.yml b/config_defaults.yml index 6de5d5e..4b9f493 100644 --- a/config_defaults.yml +++ b/config_defaults.yml @@ -81,7 +81,7 @@ Rakefile: - 'single_quote_string_with_variables' linter_exclusions: - '.vendor/**/*.pp' - - 'bundle/**/*.pp' + - '.bundle/**/*.pp' - 'pkg/**/*.pp' - 'spec/**/*.pp' - 'tests/**/*.pp' -- GitLab