vscode-docthis
vscode-docthis copied to clipboard
JSDoc generator extension for Visual Studio Code.
Hi there, When I set IncludeTypes to false inside of the settings of the plugin, the @returns still has type annotation for a "any" object type like so: ``` /**...
Is it possible to docuemtn the code after typing "/**" and then pressing TAB instead of having to do CTRL + ALT + D? Like replace the default documentation with...
Support for the official TSDoc (https://tsdoc.org/) would be very useful.
`@return` can not get type,so I don't need it ,how to disable generate?
If I type `/**` and hit Enter, when DT can add documentation for me, great. But when it cannot it makes my entire comment disappear instead of just letting me...
Now there's no indent would be added after `*`, we need an option to add indents.
First of all, thank you SO much for the wonderful extension! Description: Hello there, there seems to be a rather annoying issue. Whenever you use the extension the line above...
Code: ``` SomeObject.prototype.method = function(a, b) { // ... }; ``` Expected: ``` /** * * @param {*} a * @param {*} b */ SomeObject.prototype.method = function(a, b) { //...
prefer ```js /** * Assign the project to an employee. * @param {Object} employee - The employee who is responsible for the project. * @param {string} employee.name - The name...
Not sure how involved this would be but would it be possible to update existing documentation when re-running the extension? It should update the params, and types, but it shouldn't...