Sha256: b0ef84e361e12119835ef3ba2394158888f1131d3e9ea639f3c37e15cc0a4b53
Contents?: true
Size: 1.42 KB
Versions: 17
Compression:
Stored size: 1.42 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Naming # This cop makes sure that certain binary operator methods have their # sole parameter named `other`. # # @example # # # bad # def +(amount); end # # # good # def +(other); end class BinaryOperatorParameterName < Base extend AutoCorrector MSG = 'When defining the `%<opr>s` operator, ' \ 'name its argument `other`.' OP_LIKE_METHODS = %i[eql? equal?].freeze EXCLUDED = %i[+@ -@ [] []= << === ` =~].freeze def_node_matcher :op_method_candidate?, <<~PATTERN (def [#op_method? $_] (args $(arg [!:other !:_other])) _) PATTERN def on_def(node) op_method_candidate?(node) do |name, arg| add_offense(arg, message: format(MSG, opr: name)) do |corrector| corrector.replace(arg, 'other') node.each_descendant(:lvar, :lvasgn) do |lvar| lvar_location = lvar.loc.name next unless lvar_location.source == arg.source corrector.replace(lvar_location, 'other') end end end end private def op_method?(name) return false if EXCLUDED.include?(name) !/\A[[:word:]]/.match?(name) || OP_LIKE_METHODS.include?(name) end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems