plugin-php
plugin-php copied to clipboard
Comments duplicating out of scope
@prettier/plugin-php v0.16.2 Playground link
Input:
<?php if (true): ?>
html text
<?php else: ?>
<?php
/**
* comment
*/
?>
<?php endif
Output:
<?php if (true): ?>
html text
<?php
/**
* comment
*/
/**
* comment
*/
?>else: ?>
<?php
/**
* comment
*/
?>
<?php endif;
Also happening with single-line comments:
@prettier/plugin-php v0.16.2 Playground link
Input:
<?php if (true): ?>
html text
<?php else: ?>
<?php
// comment
?>
<?php endif
Output:
<?php if (true): ?>
html text
<?php
// comment
// comment
?>else: ?>
<?php
// comment
?>
<?php endif;
See also: https://github.com/prettier/plugin-php/issues/1228