Prettier 1.16.4
Playground link
--parser babel
--range-end 261
--range-start 17
--tab-width 4
Input:
{
{
{
{
{
{
console.log({
someAttribute: PrepareValueSomehow(value),
})
}
}
}
}
}
}
Output:
{
{
{
{
{
{
console.log({
someAttribute: PrepareValueSomehow(
value
)
});
}
}
}
}
}
}
Expected behavior:
The output should match that of the output without a range (identical to the input):
{
{
{
{
{
{
console.log({
someAttribute: PrepareValueSomehow(value),
})
}
}
}
}
}
}
Prettier 1.16.4
Playground link
Input:
Output:
Expected behavior:
The output should match that of the output without a range (identical to the input):