kokororin / vscode-phpfmt

Integrates phpfmt into VS Code
https://marketplace.visualstudio.com/items?itemName=kokororin.vscode-phpfmt
BSD 3-Clause "New" or "Revised" License
129 stars 30 forks source link

New Transformation: AlignHashComments #146

Closed phuze closed 2 months ago

phuze commented 2 months ago

Could we add a new transformation option for hash comments, that would behave similar to AlignDoubleSlashComments?

Example:

//From:
$a = 1; # Comment 1
$bb = 22;  # Comment 2
$ccc = 333;  # Comment 3

//To:
$a = 1;      # Comment 1
$bb = 22;    # Comment 2
$ccc = 333;  # Comment 3
phuze commented 2 months ago

Upstream request https://github.com/driade/phpfmt8/issues/76