Sha256: aa9aa5bfe9b9caf40ef0e8f09427cf5314ba237bf7a3a50f81a08327cc525272
Contents?: true
Size: 464 Bytes
Versions: 6525
Compression:
Stored size: 464 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
6,525 entries across 6,507 versions & 25 rubygems