class RuboCop::Rake::Plugin

A plugin that integrates RuboCop Rake with RuboCop’s plugin system.

def about

def about
  LintRoller::About.new(
    name: 'rubocop-rake',
    version: VERSION,
    homepage: 'https://github.com/rubocop/rubocop-rake',
    description: 'A RuboCop plugin for Rake.',
  )
end

def rules(_context)

def rules(_context)
  LintRoller::Rules.new(
    type: :path,
    config_format: :rubocop,
    value: Pathname.new(__dir__).join('../../../config/default.yml'),
  )
end

def supported?(context)

def supported?(context)
  context.engine == :rubocop
end