From 560e3010a77046aada34ec3d942193931abc0907 Mon Sep 17 00:00:00 2001 From: Joshua Hoblitt Date: Thu, 23 Apr 2015 17:07:56 -0700 Subject: [PATCH] add :validate to default rake target list --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 8a4c855..5460e34 100644 --- a/Rakefile +++ b/Rakefile @@ -15,7 +15,7 @@ PuppetLint::RakeTask.new :lint do |config| end task :default => [ - :syntax, + :validate, :lint, :spec, ]