Sha256: 8493ce6a16e716694e5df2471c9f6f703446bc51e2daedc1b1d12dd9a49a1451
Contents?: true
Size: 1.5 KB
Versions: 58
Compression:
Stored size: 1.5 KB
Contents
# frozen_string_literal: true module RuboCop module Cop # Common functionality for checking length of code segments. module CodeLength extend ExcludeLimit MSG = '%<label>s has too many lines. [%<length>d/%<max>d]' exclude_limit 'Max' private def message(length, max_length) format(MSG, label: cop_label, length: length, max: max_length) end def max_length cop_config['Max'] end def count_comments? cop_config['CountComments'] end def count_as_one Array(cop_config['CountAsOne']).map(&:to_sym) end def check_code_length(node) # Skip costly calculation when definitely not needed return if node.line_count <= max_length calculator = build_code_length_calculator(node) length = calculator.calculate return if length <= max_length location = node.casgn_type? ? node.loc.name : node.loc.expression add_offense(location, message: message(length, max_length)) { self.max = length } end # Returns true for lines that shall not be included in the count. def irrelevant_line(source_line) source_line.blank? || (!count_comments? && comment_line?(source_line)) end def build_code_length_calculator(node) Metrics::Utils::CodeLengthCalculator.new( node, processed_source, count_comments: count_comments?, foldable_types: count_as_one ) end end end end
Version data entries
58 entries across 52 versions & 6 rubygems