Sha256: 4f9f680f6c6745b1355e7667116919ef866143d01cb30be6943d08ae1d1c19ff

Contents?: true

Size: 1.54 KB

Versions: 6868

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

require 'pathname'

module RuboCop
  module Formatter
    # This formatter displays the list of offensive files, sorted by number of
    # offenses with the worst offenders first.
    #
    # Here's the format:
    #
    # 26  this/file/is/really/bad.rb
    # 3   just/ok.rb
    # --
    # 29  Total
    class WorstOffendersFormatter < BaseFormatter
      attr_reader :offense_counts

      def started(target_files)
        super
        @offense_counts = {}
      end

      def file_finished(file, offenses)
        return if offenses.empty?

        path = Pathname.new(file).relative_path_from(Pathname.new(Dir.pwd))
        @offense_counts[path] = offenses.size
      end

      def finished(_inspected_files)
        report_summary(@offense_counts)
      end

      # rubocop:disable Metrics/AbcSize
      def report_summary(offense_counts)
        per_file_counts = ordered_offense_counts(offense_counts)
        total_count = total_offense_count(offense_counts)

        output.puts

        per_file_counts.each do |file_name, count|
          output.puts "#{count.to_s.ljust(total_count.to_s.length + 2)}" \
                      "#{file_name}\n"
        end
        output.puts '--'
        output.puts "#{total_count}  Total"

        output.puts
      end
      # rubocop:enable Metrics/AbcSize

      def ordered_offense_counts(offense_counts)
        Hash[offense_counts.sort_by { |k, v| [-v, k] }]
      end

      def total_offense_count(offense_counts)
        offense_counts.values.inject(0, :+)
      end
    end
  end
end

Version data entries

6,868 entries across 6,842 versions & 30 rubygems

Version Path
zuora_connect_ui-0.8.1 vendor/ruby/2.6.0/gems/rubocop-0.72.0/lib/rubocop/formatter/worst_offenders_formatter.rb
zuora_connect_ui-0.8.0 vendor/ruby/2.6.0/gems/rubocop-0.72.0/lib/rubocop/formatter/worst_offenders_formatter.rb
zuora_connect_ui-0.8.0 vendor/ruby/2.6.0/gems/rubocop-0.74.0/lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.74.0 lib/rubocop/formatter/worst_offenders_formatter.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/rubocop-0.66.0/lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.73.0 lib/rubocop/formatter/worst_offenders_formatter.rb
zuora_connect_ui-0.7.1 vendor/ruby/2.6.0/gems/rubocop-0.72.0/lib/rubocop/formatter/worst_offenders_formatter.rb
zuora_connect_ui-0.7.0 vendor/ruby/2.6.0/gems/rubocop-0.72.0/lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.72.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.71.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.70.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.69.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.68.1 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.68.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.67.2 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.67.1 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.67.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.66.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.65.0 lib/rubocop/formatter/worst_offenders_formatter.rb
rubocop-0.64.0 lib/rubocop/formatter/worst_offenders_formatter.rb