Sha256: f6729d4ebfb4500dabfe3759357c4ae8928b985b78e36052a77dfd38f0b6d078

Contents?: true

Size: 1.35 KB

Versions: 2

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

module RuboCop
  module Cop
    module Style
      # Checks for if and unless statements that would fit on one line
      # if written as a modifier if/unless.
      # The maximum line length is configurable.
      class IfUnlessModifier < Cop
        include StatementModifier

        def message(keyword)
          "Favor modifier `#{keyword}` usage when having a single-line body." \
          ' Another good alternative is the usage of control flow `&&`/`||`.'
        end

        def on_if(node)
          # discard ternary ops, if/else and modifier if/unless nodes
          return if ternary_op?(node)
          return if modifier_if?(node)
          return if elsif?(node)
          return if if_else?(node)
          return unless fit_within_line_as_modifier_form?(node)
          add_offense(node, :keyword, message(node.loc.keyword.source))
        end

        def autocorrect(node)
          if node.loc.keyword.source == 'if'
            cond, body = *node
          else
            cond, _else, body = *node
          end

          @corrections << lambda do |corrector|
            oneline = "#{body.loc.expression.source} " \
                      "#{node.loc.keyword.source} " +
                      cond.loc.expression.source
            corrector.replace(node.loc.expression, oneline)
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.30.1 lib/rubocop/cop/style/if_unless_modifier.rb
rubocop-0.30.0 lib/rubocop/cop/style/if_unless_modifier.rb