Sha256: a0ec2162538543ea23950b231dd96868feb6de11544aa6c327094f7a2252a510
Contents?: true
Size: 1.96 KB
Versions: 6
Compression:
Stored size: 1.96 KB
Contents
# frozen_string_literal: true require_relative 'smell_detector' require_relative 'smell_warning' module Reek module Smells # # An Uncommunicative Name is a name that doesn't communicate its intent # well enough. # # Poor names make it hard for the reader to build a mental picture # of what's going on in the code. They can also be mis-interpreted; # and they hurt the flow of reading, because the reader must slow # down to interpret the names. # # Currently +UncommunicativeMethodName+ checks for # * 1-character names # * names ending with a number # * names containing a capital letter (assuming camelCase) # # See {file:docs/Uncommunicative-Method-Name.md} for details. class UncommunicativeMethodName < SmellDetector REJECT_KEY = 'reject'.freeze ACCEPT_KEY = 'accept'.freeze DEFAULT_REJECT_PATTERNS = [/^[a-z]$/, /[0-9]$/, /[A-Z]/].freeze DEFAULT_ACCEPT_PATTERNS = [].freeze def self.default_config super.merge( REJECT_KEY => DEFAULT_REJECT_PATTERNS, ACCEPT_KEY => DEFAULT_ACCEPT_PATTERNS) end # # Checks the given +context+ for uncommunicative names. # # @return [Array<SmellWarning>] # def sniff(context) name = context.name.to_s return [] if acceptable_name?(name: name, context: context) [smell_warning( context: context, lines: [context.exp.line], message: "has the name '#{name}'", parameters: { name: name })] end private def acceptable_name?(name:, context:) accept_patterns(context).any? { |accept_pattern| name.match accept_pattern } || reject_patterns(context).none? { |reject_pattern| name.match reject_pattern } end def reject_patterns(context) Array value(REJECT_KEY, context) end def accept_patterns(context) Array value(ACCEPT_KEY, context) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems