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

Ugly indent when method commented out

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

@prettier/plugin-php v0.16.1 Playground link

Input:

<?php

class A
{
    // public function foo()
    // {
    //     return 42;
    // }
}

Output:

<?php

class A
{
    // public function foo()
// {
//     return 42;
// }
}

Vovan-VE avatar Mar 18 '21 14:03 Vovan-VE