Class: RuboCop::Formatter::FileListFormatter
- Inherits:
-
BaseFormatter
- Object
- BaseFormatter
- RuboCop::Formatter::FileListFormatter
- Defined in:
- lib/rubocop/formatter/file_list_formatter.rb
Overview
This formatter displays just a list of the files with offenses in them, separated by newlines. The output is machine-parsable.
Here’s the format:
/some/file /some/other/file
Instance Attribute Summary
Attributes inherited from BaseFormatter
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, offenses) ⇒ Object
13 14 15 16 |
# File 'lib/rubocop/formatter/file_list_formatter.rb', line 13 def file_finished(file, offenses) return if offenses.empty? output.printf("%s\n", file) end |