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
Checks that each doc comment line start with the asterisk symbol (*)
Rationale: messy comments usually indicates a write-only code. At the very least, they should be arranged.
/**
* OK
*/
/**
** OK
*
violation
**/
/** Some text spawn
multiple lines */ // violation
Even for code blocks:
/**
* {@code
* int foo; // OK
int bar; // violation
} // violation
*/