You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a chance to have an option for sorting props on JSX elements? Would be great to sort them in alphabetical order and have priority for having true values at the top
<Example
c
d
aFunc={() => console.log('')}
bProp={<Element />}
/>
The text was updated successfully, but these errors were encountered:
This isn't really suitable for Prettier. Prettier is just a JS formatter, and should not modify the AST like that. This should probably be done by a JS codemod or a Babel plugin.
Is there a chance to have an option for sorting props on JSX elements? Would be great to sort them in alphabetical order and have priority for having true values at the top
The text was updated successfully, but these errors were encountered: