hosseinmd / prettier-plugin-jsdoc

A Prettier plugin to format JSDoc comments.
MIT License
228 stars 29 forks source link

description with single to separate comment #223

Open RosApr opened 8 months ago

RosApr commented 8 months ago
 /**
     * test
     * @type {ModuleConfig}
     */

after format will become

/**
     * Test
     *
     * @type {ModuleConfig}
     */

I use prettier with plugin options to use your super cool library as you can see there occur single line , how can i config option to ignore this format, thx