driade / phpfmt8

PHP formatter for Sublime Text 4, with PHP 8 support.
BSD 3-Clause "New" or "Revised" License
46 stars 2 forks source link

AutoSemicolon missing semicolon after match if curly is in the last line #8

Closed driade closed 1 year ago

driade commented 1 year ago
match ($x) {
    $a => 1,
    $b => 2,
};

match ($x) {
    $a => 1,
    $b => 2,
}

expected

match ($x) {
    $a => 1,
    $b => 2,
};

match ($x) {
    $a => 1,
    $b => 2,
};
driade commented 1 year ago

https://github.com/driade/phpfmt-8/issues/9