Plugin Version
v3.2.1
Prettier Version
v3.4.2
Which frameworks are affected?
Node Version
v23.5.0
Which operating systems have you used?
Prettier config
{
"plugins": ["@prettier/plugin-pug"],
"pugSingleFileComponentIndentation": true
}
Input
<template lang="pug">
ul
each val in [1, 2, 3, 4, 5]
li= val
</template>
Output or Error
<template lang="pug">
ul
each val in [1, 2, 3, 4, 5]
li = val
</template>
Expected Output
<template lang="pug">
ul
each val in [1, 2, 3, 4, 5]
li= val
</template>
Additional Context
No response
Plugin Version
v3.2.1
Prettier Version
v3.4.2
Which frameworks are affected?
Node Version
v23.5.0
Which operating systems have you used?
Prettier config
{ "plugins": ["@prettier/plugin-pug"], "pugSingleFileComponentIndentation": true }Input
Output or Error
Expected Output
Additional Context
No response