Sha256: da15a624471df881680104ed08d988eb324831165a0bc1ce206d97f59f3d8921

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

# encoding: utf-8

module Rubocop
  module Cop
    module Style
      # This cop checks for excessive nesting of conditional and looping
      # constructs. Despite the cop's name, blocks are not considered as a
      # extra level of nesting.
      #
      # The maximum level of nesting allowed is configurable.
      class BlockNesting < Cop
        NESTING_BLOCKS = [:case, :if, :while, :while_post, :until, :until_post,
                          :for, :resbody]

        def investigate(processed_source)
          return unless processed_source.ast
          max = BlockNesting.config['Max']
          check_nesting_level(processed_source.ast, max, 0)
        end

        private

        def check_nesting_level(node, max, current_level)
          if NESTING_BLOCKS.include?(node.type)
            unless node.loc.respond_to?(:keyword) &&
                node.loc.keyword.is?('elsif')
              current_level += 1
            end
            if current_level == max + 1
              add_offence(:convention, node.location.expression, message(max))
              return
            end
          end
          node.children.each do |child|
            if child.is_a?(Parser::AST::Node)
              check_nesting_level(child, max, current_level)
            end
          end
        end

        def message(max)
          "Avoid more than #{max} levels of block nesting."
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rubocop-0.12.0 lib/rubocop/cop/style/block_nesting.rb
rubocop-0.11.1 lib/rubocop/cop/style/block_nesting.rb
rubocop-0.11.0 lib/rubocop/cop/style/block_nesting.rb
rubocop-0.10.0 lib/rubocop/cop/style/block_nesting.rb