Sha256: a0bfc93e18d4235456b137e1042bb8842fe4b5ef95f633e66d117dc7e9434099

Contents?: true

Size: 1.97 KB

Versions: 3

Compression:

Stored size: 1.97 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    # Common functionality for modifier cops.
    module StatementModifier
      private

      def single_line_as_modifier?(node)
        return false if non_eligible_node?(node) ||
                        non_eligible_body?(node.body) ||
                        non_eligible_condition?(node.condition)

        modifier_fits_on_single_line?(node)
      end

      def non_eligible_node?(node)
        node.nonempty_line_count > 3 ||
          !node.modifier_form? &&
            processed_source.commented?(node.loc.end)
      end

      def non_eligible_body?(body)
        body.nil? ||
          body.empty_source? ||
          body.begin_type? ||
          processed_source.commented?(body.source_range)
      end

      def non_eligible_condition?(condition)
        condition.each_node.any?(&:lvasgn_type?)
      end

      def modifier_fits_on_single_line?(node)
        modifier_length = length_in_modifier_form(node, node.condition,
                                                  node.body.source_length)

        modifier_length <= max_line_length
      end

      def length_in_modifier_form(node, cond, body_length)
        indentation = node.loc.keyword.column * indentation_multiplier
        kw_length = node.loc.keyword.size
        cond_length = cond.source_range.size
        space = 1
        indentation + body_length + space + kw_length + space + cond_length
      end

      def max_line_length
        config.for_cop('Metrics/LineLength')['Max']
      end

      def indentation_multiplier
        return 1 if config.for_cop('Layout/Tab')['Enabled']

        default_configuration = RuboCop::ConfigLoader.default_configuration
        config.for_cop('Layout/Tab')['IndentationWidth'] ||
          config.for_cop('Layout/IndentationWidth')['Width'] ||
          default_configuration.for_cop('Layout/Tab')['IndentationWidth'] ||
          default_configuration.for_cop('Layout/IndentationWidth')['Width']
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubocop-0.59.2 lib/rubocop/cop/mixin/statement_modifier.rb
rubocop-0.59.1 lib/rubocop/cop/mixin/statement_modifier.rb
rubocop-0.59.0 lib/rubocop/cop/mixin/statement_modifier.rb