javascript - JS Beautifier Ruins Single Line Code Formatting -
i have line of code looks great in single line:
reactdom.render(<todobox data={data} />, document.getelementbyid('app'));
but no matter how change .jsbeautifyrc
file in root of vscode project, ends this:
reactdom.render( < todobox data = { data } />, document.getelementbyid('app'));
does know how rectify this?
Comments
Post a Comment