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
In the most recent update (2.3), functions are formatted as such:
function forEach(_arr, _callback) {
To:
function; forEach(_arr,_callback); {
This is likely because the formatter is splitting up the definition into the keyword, then a function call, and the open bracket.
The text was updated successfully, but these errors were encountered:
Attempted to implement this myself in #35.
Sorry, something went wrong.
Love the tool. Works great. After upgrading to 2.3 this appears to be only issue I'm running into as well.
Hello! I suppose this is still an issue? 👀
No branches or pull requests
In the most recent update (2.3), functions are formatted as such:
To:
This is likely because the formatter is splitting up the definition into the keyword, then a function call, and the open bracket.
The text was updated successfully, but these errors were encountered: