From fcdbafd74b1d21c7fd648fc510ef15dc7a0d0618 Mon Sep 17 00:00:00 2001 From: Justin Stoller Date: Sat, 8 Feb 2014 22:22:47 -0800 Subject: [PATCH 1/1] disable lint check for single quoted variables Previously we weren't linting, there's a number of warning but there was only one actual error reported when linting was enabled. It was erroring on a valid usage of a single quoted variable-like string. To allow linting to succeed (and the warning to show themselves) I've disable the check that is giving a false positive. --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 4fea69b..6d067dc 100644 --- a/Rakefile +++ b/Rakefile @@ -1,2 +1,4 @@ require 'puppetlabs_spec_helper/rake_tasks' require 'puppet-lint/tasks/puppet-lint' + +PuppetLint.configuration.send('disable_single_quote_string_with_variables') -- 2.45.2