rubocop-rake icon indicating copy to clipboard operation
rubocop-rake copied to clipboard

New cop: Namespace vs task name with `:`

Open pocke opened this issue 4 years ago • 1 comments

namespace :foo do
  task :bar do
  end
end

# or

task :'foo:bar' do
end

pocke avatar Sep 21 '19 04:09 pocke

Going by https://github.com/rubocop-hq/ruby-style-guide#namespace-definition I guess the separate namespace should be preferred.

tejasbubane avatar Dec 03 '19 11:12 tejasbubane