class Standard::Formatter

def print_fix_suggestion

def print_fix_suggestion
  if (fix_mode = potential_fix_mode)
    run_mode = determine_run_mode
    command = if run_mode == :rake
      "rake standard:#{fix_mode}"
    else
      "standardrb --#{fix_mode.to_s.tr("_", "-")}"
    end
    output.print fixable_error_message(command)
  end
end