logical. Whether to skip the check for
name_to column's separators validation.
In our official data dictionaries, some columns have
multiple names separated by a "|" in the same cell.
For columns with multiple names, it the recommended to use functions like
tidyr::separate_rows() to split the names into multiple
rows and decide which name to use for the renaming by filtering the rows,
so that the name_from and name_to columns are one-to-one
mapping.
If skip_sep_check = FALSE (default), the function will check if the
name_from or name_to columns have the "|" separator and will throw
an error if the separator is found. If skip_sep_check = TRUE, it means
you understand that character strings with "|" inside will be used for
rename mapping, and the function will not check for the separator.