Method: RuboCop::Formatter::GitHubActionsFormatter#finished

Defined in:
lib/rubocop/formatter/github_actions_formatter.rb

#finished(_inspected_files) ⇒ Object

[View source]

18
19
20
21
22
23
24
25
# File 'lib/rubocop/formatter/github_actions_formatter.rb', line 18

def finished(_inspected_files)
  @offenses_for_files.each do |file, offenses|
    offenses.each do |offense|
      report_offense(file, offense)
    end
  end
  output.puts
end