From 6cccffa20a54fd7bf1828950b8f54855195187c8 Mon Sep 17 00:00:00 2001 From: Sean Escriva Date: Thu, 16 Jun 2016 16:32:27 -0400 Subject: [PATCH] Include cookstyle in default Rakefile Not much different than vanilla rubocop setup, still allows override with .rubocop.yml if desired. ref: https://github.com/chef/cookstyle#rake --- files/default/Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/files/default/Rakefile b/files/default/Rakefile index 013c8bc..f05fa07 100644 --- a/files/default/Rakefile +++ b/files/default/Rakefile @@ -1,3 +1,4 @@ +require 'cookstyle' require 'rubocop/rake_task' require 'foodcritic' require 'rspec/core/rake_task'