Sha256: a98470d0ead27ba8e57b0178f8ac8cea207e807a0e0ad3efccd4e3baf7806118
Contents?: true
Size: 463 Bytes
Versions: 32
Compression:
Stored size: 463 Bytes
Contents
# frozen_string_literal: true module RuboCop module Formatter # 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 class FileListFormatter < BaseFormatter def file_finished(file, offenses) return if offenses.empty? output.printf("%s\n", file) end end end end
Version data entries
32 entries across 32 versions & 3 rubygems