Skip to content

Commit 8c49e97

Browse files
committed
Remove --parallel option from internal_investigation Rake task
Parallel static analysis is enabled by default since RuboCop 1.19.0.
1 parent 9b450a8 commit 8c49e97

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Rakefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@ task :coverage do
3434
end
3535

3636
desc 'Run RuboCop over itself'
37-
RuboCop::RakeTask.new(:internal_investigation).tap do |task|
38-
if RUBY_ENGINE == 'ruby' &&
39-
RbConfig::CONFIG['host_os'] !~ /mswin|msys|mingw|cygwin|bccwin|wince|emc/
40-
task.options = %w[--parallel]
41-
end
42-
end
37+
RuboCop::RakeTask.new(:internal_investigation)
4338

4439
task default: %i[
4540
documentation_syntax_check

0 commit comments

Comments
 (0)