class RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor

def attribute_or_allowed_method?(node)

def attribute_or_allowed_method?(node)
  return false unless node.send_type?
  node.attribute_accessor? || allowed_method?(node.method_name)
end