disable lint check for single quoted variables
authorJustin Stoller <justin@puppetlabs.com>
Sun, 9 Feb 2014 06:22:47 +0000 (22:22 -0800)
committerJustin Stoller <justin@puppetlabs.com>
Sun, 9 Feb 2014 06:22:47 +0000 (22:22 -0800)
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

index 4fea69bcfb40353bbb1021b0102d35de7549a432..6d067dc56c2481e2eac4a18818d83b0c5659a1a7 100644 (file)
--- 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')