class RuboCop::Cop::Naming::BinaryOperatorParameterName

Makes sure that certain binary operator methods have their sole parameter named ‘other`.

@example

# bad
def +(amount); end

# good
def +(other); end