sublime-jsdocs
sublime-jsdocs copied to clipboard
Add setting to define the order of tags
Something like jsdoc_order_tags: ['@param', '@private','@fires','@return']
.
Is there currently any way to change the doc generation before functions such that the variable name came before the variable type. Currently the description reads directly after the variable name in a way that makes it pretty annoying to have to read, especially in a large code base with a number of functions. Eg. Currently it reads: @param {Object} variable This variable does something cool
I want it to read" @param variable {Object} This variable does something cool
Any help to resolve this would be awesome.
Thanks
I'm also interested in a setting to allow @param
to have the name
before {type}
.