Short description of issue
@param declarations are getting reformatted improperly
Reproduction steps
Create a doc block and add some @param declarations, with each one starting on a new line. Save / format the document and see prettier reformat them incorrectly. First screenshot shows how it should look, second shows how it looks after formatting.
Additional info
Workspace settings:
{
"[liquid]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Prettier config is:
{
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true,
trailingComma: 'all',
bracketSpacing: true,
arrowParens: 'avoid',
endOfLine: 'auto',
tailwindStylesheet: '/src/entrypoints/theme.css',
overrides: [
{
files: ['**/*.css', '**/*.liquid'],
options: {
singleQuote: false,
},
},
{
files: ['**/*.css'],
options: {
tailwindPreserveWhitespace: true,
},
},
],
plugins: ['@shopify/prettier-plugin-liquid', 'prettier-plugin-tailwindcss'],
}
What type of topic is this
Bug report

