class RuboCop::CLI

def execute_runners(paths)

def execute_runners(paths)
  if @options[:auto_gen_config]
    reset_config_and_auto_gen_file
    line_length_contents =
      if max_line_length(@config_store.for(Dir.pwd)) ==
         max_line_length(ConfigLoader.default_configuration)
        run_line_length_cop_auto_gen_config(paths)
      else
        puts Rainbow(SKIPPED_PHASE_1).yellow
        ''
      end
    run_all_cops_auto_gen_config(line_length_contents, paths)
  else
    execute_runner(paths)
  end
end