Sha256: 06fd5b186f377f8d227c08348b3df00b2381b7710f1d9d48fae3438893b2d76a

Contents?: true

Size: 834 Bytes

Versions: 246

Compression:

Stored size: 834 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  class ConfigObsoletion
    # Encapsulation of a ConfigObsoletion rule for changing a parameter
    # @api private
    class ChangedEnforcedStyles < ParameterRule
      BASE_MESSAGE = 'obsolete `%<parameter>s: %<value>s` (for `%<cop>s`) found in %<path>s'

      def violated?
        super && config[cop][parameter] == value
      end

      def message
        base = format(BASE_MESSAGE,
                      parameter: parameter, value: value, cop: cop, path: smart_loaded_path)

        if alternative
          "#{base}\n`#{parameter}: #{value}` has been renamed to " \
            "`#{parameter}: #{alternative.chomp}`."
        else
          "#{base}\n#{reason.chomp}"
        end
      end

      private

      def value
        metadata['value']
      end
    end
  end
end

Version data entries

246 entries across 237 versions & 23 rubygems

Version Path
study_line-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
rubocop-1.60.1 lib/rubocop/config_obsoletion/changed_enforced_styles.rb
study_line-0.2.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
study_line-0.2.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
rubocop-1.60.0 lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.10 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.9 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.7 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.5 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.4 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.2.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.99 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.98 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.97 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.96 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb