Sha256: d16c4acdd29f7048ff4c5239e72a1ed6fda56ae8ff8624455fbfacd37a41afe7
Contents?: true
Size: 451 Bytes
Versions: 24
Compression:
Stored size: 451 Bytes
Contents
# encoding: utf-8 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
24 entries across 24 versions & 2 rubygems