class Standard::CreatesConfigStore::MergesUserConfigExtensions::ExtendConfigPlugin

def about

def about
  About.new("Pseudo-plugin wrapping the `extend_config' path: #{@yaml_path}")
end

def initialize(path)

def initialize(path)
  @yaml_path = Standard::FileFinder.new.call(path, Dir.pwd)
end

def rules(context)

def rules(context)
  LintRoller::Rules.new(
    type: :path,
    config_format: :rubocop,
    value: @yaml_path
  )
end