class RuboCop::Packaging::Plugin

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

def about

def about
  LintRoller::About.new(
    name: "rubocop-packaging",
    version: VERSION,
    homepage: "https://github.com/utkarsh2102/rubocop-packaging",
    description: "A collection of RuboCop cops to check for downstream compatibility issues in the Ruby code."
  )
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