Pattern: Missing space after comment start
Issue: -
To bring consistency with how comments should be formatted, leave a space right after the beginning of the comment.
package foobar
object Foobar {
/**WRONG
*
*/
/** Correct*/
val d = 2 /*Wrong*/ //Wrong
/**
*Correct
*/
val e = 3/** Correct*/ // Correct
}
<check enabled="true" class="org.scalastyle.scalariform.SpaceAfterCommentStartChecker" level="warning"/>