We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
actual: wrong indent, wrong whitespace
function App(props) { return ( (<div class="app">hello{props.name} </div>) ); }
expected
function App(props) { return ( <div class="app"> hello {props.name} </div> ); }
upstream issue benjamn/recast#211
see also #116
The text was updated successfully, but these errors were encountered:
https://putout.cloudcmd.io/#/gist/18db3a272e5e48d482be82e85ad2a215/dd7ba82d3681737cb9f46a6ea83113c5781ef807
Sorry, something went wrong.
Fixed with benjamn/recast#1223. Landed in @putout/recast v1.10.0 🎉 .
@putout/recast v1.10.0
Please reinstall 🐊Putout. Is it works for you?
No branches or pull requests
actual: wrong indent, wrong whitespace
expected
upstream issue benjamn/recast#211
see also #116
The text was updated successfully, but these errors were encountered: