You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My apologies if this is not the correct place for this suggestion, but I couldn't find any better places to suggest it.
Basically, I'd really love it if the JSDoc parser that VS Code uses for JavaScript (not TypeScript) intellisense supported multi-line tags. I know it's possible, as WebStorm/IntelliJ has supported this feature for years.
For example, if I want to fully document my event handlers when using Polymer, each handler method requires all of these @param tags to parse correctly:
My apologies if this is not the correct place for this suggestion, but I couldn't find any better places to suggest it.
Basically, I'd really love it if the JSDoc parser that VS Code uses for JavaScript (not TypeScript) intellisense supported multi-line tags. I know it's possible, as WebStorm/IntelliJ has supported this feature for years.
For example, if I want to fully document my event handlers when using Polymer, each handler method requires all of these
@param
tags to parse correctly:I can simplify this a bit by using this instead:
But that's not exactly readable, and its readability decreases for every additional property on
Object.details
. This would be my ideal solution:Or when using
@typedef
tags, rather than doing this:I could just do this instead:
Whereas right now all I can do to simplify it is:
Which again, is less readable, and gets more unreadable the more properties you have to document.
The text was updated successfully, but these errors were encountered: