Sha256: 06fd5b186f377f8d227c08348b3df00b2381b7710f1d9d48fae3438893b2d76a

Contents?: true

Size: 834 Bytes

Versions: 235

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

235 entries across 226 versions & 21 rubygems

Version Path
harbr-0.1.63 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.62 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.61 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.60 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.59 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.58 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.57 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.56 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.55 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.54 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.53 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.52 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.50 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.49 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.48 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.47 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.46 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.45 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.44 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb
harbr-0.1.43 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_enforced_styles.rb