Sha256: 6a3bfd8491585ee0ee50babc5d021146e0c6b2facc9015408da8f0a9f7dd9a14

Contents?: true

Size: 1.02 KB

Versions: 12

Compression:

Stored size: 1.02 KB

Contents

# frozen_string_literal: true

require_relative 'base_error'

module Reek
  module Errors
    # Gets raised for old-style comment configuration format.
    class LegacyCommentSeparatorError < BaseError
      MESSAGE = <<-MESSAGE
        Error: You are using the legacy configuration format (including three
        colons) to configure Reek in one your source code comments.

        The source is '%<source>s' and the comment belongs to the expression
        starting in line %<line>d.

        Here's the original comment:

        %<comment>s

        Please see the Reek docs for information on how to configure Reek via
        source code comments: #{DocumentationLink.build('Smell Suppression')}

        Update the offensive comment and re-run Reek.

      MESSAGE

      def initialize(source:, line:, original_comment:)
        message = format(MESSAGE,
                         source: source,
                         line: line,
                         comment: original_comment)
        super message
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
reek-6.1.4 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.1.3 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.1.2 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.1.1 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.1.0 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.0.6 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.0.5 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.0.4 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.0.3 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.0.2 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.0.1 lib/reek/errors/legacy_comment_separator_error.rb
reek-6.0.0 lib/reek/errors/legacy_comment_separator_error.rb