Sha256: 4ea42084c23b9c3b4201c0654ec27a3a8aa71e234e2a10a0d29d0362381fa730

Contents?: true

Size: 1.69 KB

Versions: 17

Compression:

Stored size: 1.69 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 literals you want to fold with `CountAsOne`.
      # Available are: 'array', 'hash', and 'heredoc'. Each literal
      # 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']
      #
      #   def m
      #     array = [       # +1
      #       1,
      #       2
      #     ]
      #
      #     hash = {        # +3
      #       key: 'value'
      #     }
      #
      #     <<~HEREDOC      # +1
      #       Heredoc
      #       content.
      #     HEREDOC
      #   end               # 5 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.send_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

17 entries across 15 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/metrics/method_length.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/metrics/method_length.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-1.35.1/lib/rubocop/cop/metrics/method_length.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/metrics/method_length.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/metrics/method_length.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.35.1/lib/rubocop/cop/metrics/method_length.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.36.0/lib/rubocop/cop/metrics/method_length.rb
rubocop-1.39.0 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.38.0 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.37.1 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.37.0 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.36.0 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.35.1 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.35.0 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.34.1 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.34.0 lib/rubocop/cop/metrics/method_length.rb
rubocop-1.33.0 lib/rubocop/cop/metrics/method_length.rb