diff --git a/Rakefile b/Rakefile index c779a20e1cb5178620886ea12dbca15d935470f2..720ccef934f158c16329086e8e880370c7a8b725 100644 --- a/Rakefile +++ b/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