Sha256: ff2e39441a2f31116e5eab1fb318907190cf15e44e7e0f252c034df3fe4f4198

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Metrics
      # This cop checks that the cyclomatic complexity of methods is not higher
      # than the configured maximum. The cyclomatic complexity is the number of
      # linearly independent paths through a method. The algorithm counts
      # decision points and adds one.
      #
      # An if statement (or unless or ?:) increases the complexity by one. An
      # else branch does not, since it doesn't add a decision point. The &&
      # operator (or keyword and) can be converted to a nested if statement,
      # and ||/or is shorthand for a sequence of ifs, so they also add one.
      # Loops can be said to have an exit condition, so they add one.
      class CyclomaticComplexity < Cop
        include MethodComplexity

        MSG = 'Cyclomatic complexity for %s is too high. [%d/%d]'.freeze
        COUNTED_NODES = %i[if while until for
                           rescue when and or].freeze

        private

        def complexity_score_for(_node)
          1
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubocop-0.51.0 lib/rubocop/cop/metrics/cyclomatic_complexity.rb
rubocop-0.50.0 lib/rubocop/cop/metrics/cyclomatic_complexity.rb
rubocop-0.49.1 lib/rubocop/cop/metrics/cyclomatic_complexity.rb
rubocop-0.49.0 lib/rubocop/cop/metrics/cyclomatic_complexity.rb
rubocop-0.48.1 lib/rubocop/cop/metrics/cyclomatic_complexity.rb