class RuboCop::Formatter::FuubarStyleFormatter

def started(target_files)

def started(target_files)
  super
  @severest_offense = nil
  file_phrase = target_files.count == 1 ? 'file' : 'files'
  # 185/407 files |====== 45 ======>                    |  ETA: 00:00:04
  # %c / %C       |       %w       >         %i         |       %e
  bar_format = " %c/%C #{file_phrase} |%w>%i| %e "
  @progressbar = ProgressBar.create(
    output: output,
    total: target_files.count,
    format: bar_format,
    autostart: false
  )
  with_color { @progressbar.start }
end