Sha256: 0a194cd267dba80fd0062cab98b563ff9b2ef23b3eeab5d40b5a48008ce52b76

Contents?: true

Size: 1.04 KB

Versions: 24

Compression:

Stored size: 1.04 KB

Contents

# encoding: utf-8

module RuboCop
  module Formatter
    # This formatter formats report data in clang style.
    # The precise location of the problem is shown together with the
    # relevant source code.
    class ClangStyleFormatter < SimpleTextFormatter
      def report_file(file, offenses)
        offenses.each do |o|
          output.printf("%s:%d:%d: %s: %s\n",
                        cyan(smart_path(file)), o.line, o.real_column,
                        colored_severity_code(o), message(o))

          source_line = o.location.source_line
          next if source_line.blank?

          output.puts(source_line)
          output.puts(highlight_line(o.location))
        end
      end

      def highlight_line(location)
        column_length = if location.begin.line == location.end.line
                          location.column_range.count
                        else
                          location.source_line.length - location.column
                        end

        ' ' * location.column + '^' * column_length
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/formatter/clang_style_formatter.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.35.1 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.35.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.34.2 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.34.1 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.34.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.33.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.32.1 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.32.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.31.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.30.1 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.30.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.29.1 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.29.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.28.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.27.1 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.27.0 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.26.1 lib/rubocop/formatter/clang_style_formatter.rb
rubocop-0.26.0 lib/rubocop/formatter/clang_style_formatter.rb