diff --git a/Rakefile b/Rakefile index 2bfa5cf82..a0ef765eb 100644 --- a/Rakefile +++ b/Rakefile @@ -65,3 +65,11 @@ begin rescue LoadError STDERR.puts "Warning: Rails rake tasks currently unavailable because we can't find the 'rails' gem" end + +require 'rubocop/rake_task' +RuboCop::RakeTask.new + +require 'haml_lint/rake_task' +HamlLint::RakeTask.new + +task :default => [:spec, :rubocop, :haml_lint]