From 49bb2c3fd7ab87ff2ff7724de5327726fd59c65d Mon Sep 17 00:00:00 2001 From: Joshua Hoblitt Date: Fri, 13 Sep 2013 11:53:08 -0700 Subject: [PATCH] puppet-lint should ignore pkg/** --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f6a479f..4c7d1ce 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ require 'puppet-lint/tasks/puppet-lint' PuppetSyntax.exclude_paths = ["spec/fixtures/**/*"] PuppetLint.configuration.send("disable_class_inherits_from_params_class") PuppetLint.configuration.send("disable_variable_scope") -PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", 'tests/**/*.pp'] +PuppetLint.configuration.ignore_paths = ['pkg/**/*.pp', 'spec/**/*.pp', 'tests/**/*.pp'] task :default => [ :syntax,