Если вы используете этот плагин / расширение.
https://github.com/kokororin/vscode-phpfmt
Существует опция "RestoreComments", чтобы не изменять / не трогать блоки комментариев.
Файл | Предпочтения | Настройки
{
"phpfmt.psr2": true,
"phpfmt.visibility_order": true,
"phpfmt.passes": [
"PSR2KeywordsLowerCase",
"PSR2LnAfterNamespace",
"PSR2CurlyOpenNextLine",
"PSR2ModifierVisibilityStaticOrder",
"PSR2SingleEmptyLineAndStripClosingTag",
"ReindentSwitchBlocks",
"SpaceAfterExclamationMark",
"ReplaceBooleanAndOr",
"RestoreComments",
"GeneratePHPDoc"
],
"phpfmt.exclude": [
"ReindentComments",
"StripNewlineWithinClassBody"
],
"[php]": {
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.autoIndent": true,
"editor.formatOnSave": true
}
}