Does not handle nested quotes
bduffany opened this issue · 3 comments
bduffany commented
Input:
'Foo "bar${}" baz'
Actual result:
'Foo `bar${}` baz'
Expected result:
`Foo "bar${}" baz`
meganrogge commented
bduffany commented
Just curious, why false by default? To me it seems like most people would want this to be true
.
meganrogge commented
I don't want to surprise people with new behavior. I can see the argument for setting it to true
by default though.