I´m using Sublime Text 3 with JSPrettier to format Javascript and JSX code.
I have the following set in my JSPrettier configuration:
// If true, will use single instead of double quotes
"singleQuote": true
Even with that, when formatting the code JSPrettier still insists on putting double quote on className and other JSX properties, like:
<div className="uxm-details-header-buttons">
or
<Icon name="refresh" />
I really expected everything with single quote, keeping double ones for special cases.
Any hint on how to solve that ?