Sha256: 59b4140586e350e6ea7f64985a1b83470f7d39193930abc33cd9f454fad92e5b

Contents?: true

Size: 1.96 KB

Versions: 208

Compression:

Stored size: 1.96 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for uses of unless with a negated condition. Only unless
      # without else are considered. There are three different styles:
      #
      # * both
      # * prefix
      # * postfix
      #
      # @example EnforcedStyle: both (default)
      #   # enforces `if` for `prefix` and `postfix` conditionals
      #
      #   # bad
      #   unless !foo
      #     bar
      #   end
      #
      #   # good
      #   if foo
      #     bar
      #   end
      #
      #   # bad
      #   bar unless !foo
      #
      #   # good
      #   bar if foo
      #
      # @example EnforcedStyle: prefix
      #   # enforces `if` for just `prefix` conditionals
      #
      #   # bad
      #   unless !foo
      #     bar
      #   end
      #
      #   # good
      #   if foo
      #     bar
      #   end
      #
      #   # good
      #   bar unless !foo
      #
      # @example EnforcedStyle: postfix
      #   # enforces `if` for just `postfix` conditionals
      #
      #   # bad
      #   bar unless !foo
      #
      #   # good
      #   bar if foo
      #
      #   # good
      #   unless !foo
      #     bar
      #   end
      class NegatedUnless < Base
        include ConfigurableEnforcedStyle
        include NegativeConditional
        extend AutoCorrector

        def on_if(node)
          return if node.if? || node.elsif? || node.ternary?
          return if correct_style?(node)

          message = message(node)
          check_negative_conditional(node, message: message) do |corrector|
            ConditionCorrector.correct_negative_condition(corrector, node)
          end
        end

        private

        def message(node)
          format(MSG, inverse: node.inverse_keyword, current: node.keyword)
        end

        def correct_style?(node)
          (style == :prefix && node.modifier_form?) || (style == :postfix && !node.modifier_form?)
        end
      end
    end
  end
end

Version data entries

208 entries across 199 versions & 19 rubygems

Version Path
rubocop-1.68.0 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.67.0 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.66.1 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.66.0 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.65.1 lib/rubocop/cop/style/negated_unless.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/negated_unless.rb
rubocop-1.65.0 lib/rubocop/cop/style/negated_unless.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/negated_unless.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/negated_unless.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/style/negated_unless.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/style/negated_unless.rb
rubocop-1.64.1 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.63.4 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.63.3 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.63.2 lib/rubocop/cop/style/negated_unless.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/negated_unless.rb
rubocop-1.63.1 lib/rubocop/cop/style/negated_unless.rb
rubocop-1.63.0 lib/rubocop/cop/style/negated_unless.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/style/negated_unless.rb
rubocop-1.62.1 lib/rubocop/cop/style/negated_unless.rb