For those looking specifically for hiding separator line of an Eureka row, this is the only solution that worked for me:
row.cellUpdate { (cell, row) in
cell.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: CGFloat.greatestFiniteMagnitude)
}