class Standard::Runners::Rubocop

def call(config)

def call(config)
  rubocop_runner = RuboCop::CLI::Command::ExecuteRunner.new(
    RuboCop::CLI::Environment.new(
      without_parallelizing_in_stdin_mode(config.rubocop_options),
      config.rubocop_config_store,
      config.paths
    )
  )
  rubocop_runner.run
end