~~ quoteStyle: alwaysSingle ~~
== should use single quotes when specified ==
console.log("str");
const test = <div prop="test" />;

[expect]
console.log('str');
const test = <div prop='test' />;

== should handle single quotes inside the string ==
console.log("'");

[expect]
console.log('\'');

== should handle escaped single quotes ==
console.log('\'testing\'');

[expect]
console.log('\'testing\'');

== should handle string literals that span multiple lines ==
function test() {
    const test = "testing\
this out\
          testing";
}

[expect]
function test() {
    const test = 'testing\
this out\
          testing';
}
