Closed
Description
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();
Metadata
Metadata
Assignees
Labels
No labels