Class: Rubocop::Formatter::FileListFormatter

Inherits:
BaseFormatter show all
Defined in:
lib/rubocop/formatter/file_list_formatter.rb

Overview

This formatter displays just a list of the files with offences in them, separated by newlines.

Here's the format:

/some/file /some/other/file

Instance Attribute Summary

Attributes inherited from BaseFormatter

#output

Instance Method Summary collapse

Methods inherited from BaseFormatter

#file_started, #finished, #initialize, #started

Constructor Details

This class inherits a constructor from Rubocop::Formatter::BaseFormatter

Instance Method Details

#file_finished(file, offences) ⇒ Object



13
14
15
16
# File 'lib/rubocop/formatter/file_list_formatter.rb', line 13

def file_finished(file, offences)
  return if offences.empty?
  output.printf("%s\n", file)
end