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
Currently, enforce-existence only enforces the existence of jsdoc comments for functions, but not for classes. I.e. in the following constructor is required to have a jsdoc comment, but the class itself is not.
classPoint{constructor(x,y){this.x=x;this.y=y;}}
I'd like it, if the rule was also enforce the existence of jsdoc comments on classes.
Thoughts?
The text was updated successfully, but these errors were encountered:
Currently, enforce-existence only enforces the existence of jsdoc comments for functions, but not for classes. I.e. in the following
constructor
is required to have a jsdoc comment, but the class itself is not.I'd like it, if the rule was also enforce the existence of jsdoc comments on classes.
Thoughts?
The text was updated successfully, but these errors were encountered: