We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trailing commas in a destructured object parameter result in an extra @param tag being added.
@param
foo({ bar, }) { // stuff }
becomes:
/** * [foo description] * * @param {[type]} options.bar [description] * @return {[type]} [description] */ foo({ bar, }) { // stuff }
/** * [foo description] * * @param {[type]} options.bar [description] * @param {[type]} options. [description] * @return {[type]} [description] */ foo({ bar, }) { // stuff }
Looks like the commit that introduced this is c86b180b7e4049369f0cfd6aa98f379558b6ea0d. I don't know Python :(
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Trailing commas in a destructured object parameter result in an extra
@param
tag being added.Expected Behavior
becomes:
Current Behavior
becomes:
Notes
Looks like the commit that introduced this is c86b180b7e4049369f0cfd6aa98f379558b6ea0d. I don't know Python :(
The text was updated successfully, but these errors were encountered: