plugin-php icon indicating copy to clipboard operation
plugin-php copied to clipboard

Ugly: Wrong indent in empty array with //comment inside

Open Vovan-VE opened this issue 3 years ago • 0 comments

@prettier/plugin-php v0.17.6 Playground link

Input:

<?php

return [
  // TODO: ...
];

return [
  // TODO: ...
  'foo' => 'bar',
];

return [
  'foo' => 'bar',
];

Output:

<?php

return [
        // TODO: ...
    ];

return [
    // TODO: ...
    "foo" => "bar",
];

return [
    "foo" => "bar",
];

Vovan-VE avatar Nov 12 '21 10:11 Vovan-VE