Rakefile 🔗
@@ -1,7 +1,6 @@
# frozen_string_literal: true
require "rake/testtask"
-require "rubocop/rake_task"
Rake::TestTask.new(:test) do |t|
ENV["RANTLY_VERBOSE"] = "0" unless ENV["RANTLY_VERBOSE"]
@@ -13,8 +12,6 @@ Rake::TestTask.new(:test) do |t|
t.warning = false
end
-RuboCop::RakeTask.new(:lint)
-
task :entr do
sh "sh", "-c", "git ls-files | entr -s 'rubocop && rake test'"
end