Based on this question it appears that the default template for CheckStyle will allow if else ladders to separate the if and else with a line break.
Meaning I would like this code to be flagged as a violation:
if (true)
{
System.out.println("20");
}
else
if (true)
{
System.out.println("30");
}
Is there a CheckStyle rule to prevent this? Looking over the docs, I don't see one, and I'd prefer not to use the generic regex rule, if I don't have to.
Edit: At the suggestion of VonC I am trying this rule using a regex:
<module name="GenericIllegalRegexp">
<property name="format" value="else[ \t]*[\r\n]+[ \t]*if"/>
<property name="message"
value="else
Also, if keywords must be on I use the same line."/>
<property name="severity" value="error"/>
</module>
But that does not GenericIllegalRegexp module, multiline regex don't seem to work, and the style error is not detected. Any ideas what could be wrong hereIs there some remedy to this?
