We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Tested on latest develop ad5d09e. This is the resulting indentation:
const a = 1, b = { foo: 'bar' }; anythingHere();
whereas I would expect this:
var a = 1, b = { foo: 'bar' }; anythingHere();
Bizarrely, a trailing comma in the object or array literal fixes the subsequent indentation:
const a = 1, b = { foo: 'bar', }; anythingHere();
The text was updated successfully, but these errors were encountered:
my new p.r. #515 , if finished, will work in just about any situation regardless of keyword, comma etc. it also removes about 80% of the code
Sorry, something went wrong.
This is now fixed in develop
develop
Should now be fixed in develop
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Tested on latest develop ad5d09e. This is the resulting indentation:
whereas I would expect this:
Bizarrely, a trailing comma in the object or array literal fixes the subsequent indentation:
The text was updated successfully, but these errors were encountered: