I currently have the "Single Quote" property in Atom set to true, however when I format the code using prettier, it is changing all single quotes to double quotes.

Formatting code:

Anyone else experiencing this or did I screw something up somewhere?
@jjwyse I think this is an issue relating to Prettier itself as it's treating JSX attributes specially. You will notice that Prettier is not changing the single quotes at the top in your imports, so it is respecting the option that the atom plugin has set.
Yep, since JSX was designed to be similar to HTML, the convention is to use double quotes for JSX attributes.
@robwise @demoneaux - Ah, nice - thanks for the response and insight, appreciate it. I'll go ahead and close this. Thanks again. 馃憤
Why No one mentioned this option
{
"singleQuote": true,
"jsxSingleQuote": true
}
Because it didn't exist 3 years ago