I have the array:
["R'", "L", "U", "D'", "F'", "B"]
and it keeps getting formatted to use single quotes on only some of the values because the other ones have a literal single quote:
["R'", 'L', 'U', "D'", "F'", 'B']
I don't want to have inconsistent quotes and I don't want to be forced to escape my single quotes. But I want the project to default to single quotes for strings.
Is there no way to do this? I've searched for many hours on SO and GitHub issues and see no mention of this problem.