From 9d4b43d2f6e79e2f056b51df4503eb3006c1a33a Mon Sep 17 00:00:00 2001 From: Sebastien Badia Date: Tue, 4 Mar 2014 18:23:45 +0100 Subject: [PATCH] [rakefile] Ignore examples files (lint) (refs: #325) --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index c8083099..6f883b30 100644 --- a/Rakefile +++ b/Rakefile @@ -8,7 +8,7 @@ PuppetLint.configuration.send('disable_class_parameter_defaults') # For stonith-enabled (it's a string not a bool) PuppetLint.configuration.send('disable_quoted_booleans') # Ignore all upstream modules -PuppetLint.configuration.ignore_paths = ['spec/fixtures/modules/**/*.pp'] +PuppetLint.configuration.ignore_paths = ['spec/fixtures/modules/**/*.pp','examples/*.pp'] task(:default).clear task :default => [:spec_prep, :spec_standalone, :lint]