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
I often have to delete the two lines (the @return and the one above it) on these, which makes for more work. Is there a way to configure jsdoc to not add a @return unless it returns something (PHP)?
The text was updated successfully, but these errors were encountered:
@return
is being added to functions that don't have areturn
e.g. void. We practice not documenting@return
unless it actually returns something:I often have to delete the two lines (the
@return
and the one above it) on these, which makes for more work. Is there a way to configure jsdoc to not add a@return
unless it returns something (PHP)?The text was updated successfully, but these errors were encountered: