Sha256: b7030ea23f298ab479e75bdad552e0da77e91567b76ffb7e433c6a60c4cae26c

Contents?: true

Size: 1.8 KB

Versions: 113

Compression:

Stored size: 1.8 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Metrics
      # Checks if the length of a method exceeds some maximum value.
      # Comment lines can optionally be allowed.
      # The maximum allowed length is configurable.
      #
      # You can set constructs you want to fold with `CountAsOne`.
      # Available are: 'array', 'hash', 'heredoc', and 'method_call'. Each construct
      # will be counted as one line regardless of its actual size.
      #
      # NOTE: The `ExcludedMethods` and `IgnoredMethods` configuration is
      # deprecated and only kept for backwards compatibility.
      # Please use `AllowedMethods` and `AllowedPatterns` instead.
      # By default, there are no methods to allowed.
      #
      # @example CountAsOne: ['array', 'heredoc', 'method_call']
      #
      #   def m
      #     array = [       # +1
      #       1,
      #       2
      #     ]
      #
      #     hash = {        # +3
      #       key: 'value'
      #     }
      #
      #     <<~HEREDOC      # +1
      #       Heredoc
      #       content.
      #     HEREDOC
      #
      #     foo(            # +1
      #       1,
      #       2
      #     )
      #   end               # 6 points
      #
      class MethodLength < Base
        include CodeLength
        include AllowedMethods
        include AllowedPattern

        LABEL = 'Method'

        def on_def(node)
          return if allowed_method?(node.method_name) || matches_allowed_pattern?(node.method_name)

          check_code_length(node)
        end
        alias on_defs on_def

        def on_block(node)
          return unless node.method?(:define_method)

          check_code_length(node)
        end
        alias on_numblock on_block

        private

        def cop_label
          LABEL
        end
      end
    end
  end
end

Version data entries

113 entries across 113 versions & 9 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/metrics/method_length.rb
rubocop-1.65.1 lib/rubocop/cop/metrics/method_length.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/metrics/method_length.rb
rubocop-1.65.0 lib/rubocop/cop/metrics/method_length.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/metrics/method_length.rb
rubocop-1.64.1 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.63.4 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.63.3 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.63.2 lib/rubocop/cop/metrics/method_length.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/metrics/method_length.rb
rubocop-1.63.1 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.63.0 lib/rubocop/cop/metrics/method_length.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/metrics/method_length.rb
rubocop-1.62.1 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.62.0 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.61.0 lib/rubocop/cop/metrics/method_length.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.2/lib/rubocop/cop/metrics/method_length.rb
rubocop-1.60.2 lib/rubocop/cop/metrics/method_length.rb
study_line-0.2.7 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/metrics/method_length.rb
study_line-0.2.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/metrics/method_length.rb