Is there a CheckStyle rule to force if else keywords to be on the same line in an if/else ladder? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:01:09Z http://stackoverflow.com/feeds/question/387008 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/387008/is-there-a-checkstyle-rule-to-force-if-else-keywords-to-be-on-the-same-line-in-an 2 Is there a CheckStyle rule to force if else keywords to be on the same line in an if/else ladder? Justin Standard 2008-12-22T18:43:56Z 2008-12-29T02:15:40Z <p>Based on <a href="http://stackoverflow.com/questions/382633/can-the-checkstyle-module-needbraces-work-with-nested-ifelse-blocks">this question</a> it appears that the default template for CheckStyle will allow if else ladders to separate the <code>if</code> and <code>else</code> with a line break.</p> <p>Meaning I would like <em>this</em> code to be flagged as a violation:</p> <pre><code>if (true) { System.out.println("20"); } else if (true) { System.out.println("30"); } </code></pre> <p>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.</p> <p>Also, if I use the <em>GenericIllegalRegexp</em> module, multiline regex don't seem to work. Is there some remedy to this?</p> http://stackoverflow.com/questions/387008/is-there-a-checkstyle-rule-to-force-if-else-keywords-to-be-on-the-same-line-in-an/387528#387528 1 Answer by VonC for Is there a CheckStyle rule to force if else keywords to be on the same line in an if/else ladder? VonC 2008-12-22T22:13:28Z 2008-12-23T20:56:58Z <p>I am not sure you can easily write a Checkstyle extension, since the AST browsing code of the <a href="http://checkstyle.sourceforge.net/writingchecks.html" rel="nofollow">Checkstyle SDK Gui</a> does not make any difference between:</p> <pre><code>else if </code></pre> <p>and</p> <pre><code>else if </code></pre> <p>In each case, <code>else</code> is a <code>LITERAL_ELSE</code> with in it an <code>if</code>...</p> <p>So the generic regexp <code>else[ \t]*[\r\n]+[ \t]*if</code> is indeed a quick way to detect that kind of code.</p> <p><hr /></p> <p>Fix the regexp to include cases were :</p> <ul> <li>there is no space not tab before/after newline</li> <li>the is multiple newlines.</li> </ul> <p>Of course, you do not want to use the <code>\s</code> whitespace regexp expression, since it includes itself newline characters. It is clearer to separate spaces from return characters.</p> <p><hr /></p> <p>Note: in Checkstyle 5.0beta, do not use "Generic Illegal Regexp", but rather the <strong>"<a href="http://checkstyle.sourceforge.net/config_misc.html#Regexp" rel="nofollow">Regexp" module</a></strong>:<br /> you can configure that RegExp module as 'illegalPattern' (with an associated Severity of 'Warning'), and you do not have to use any kind af 'multi-line' flag: the regexp is enough.</p> <blockquote> <p><strong>Regexp</strong><br /> Description</p> <p>A check that makes sure that a specified pattern exists, exists less than a set number of times, or does not exist in the file.</p> <p>This check combines all the functionality provided by RegexpHeader, GenericIllegalRegexp and RequiredRegexp, except supplying the regular expression from a file.</p> <p><strong>It differs from them in that it works in multiline mode</strong>. It's regular expression can span multiple lines and it checks this against the whole file at once. The others work in singleline mode. Their single or multiple regular expressions can only span one line. They check each of these against each line in the file in turn. </p> </blockquote> http://stackoverflow.com/questions/387008/is-there-a-checkstyle-rule-to-force-if-else-keywords-to-be-on-the-same-line-in-an/396992#396992 0 Answer by duffymo for Is there a CheckStyle rule to force if else keywords to be on the same line in an if/else ladder? duffymo 2008-12-29T02:15:40Z 2008-12-29T02:15:40Z <p>IntelliJ lets you set this kind of behavior as a global default. If everyone on your team used IntelliJ, you could have a team style guideline and the IDE would enforce it.</p> <p>Or you can use <a href="http://checkstyle.sourceforge.net/" rel="nofollow">CheckStyle</a> if you aren't an IntelliJ shop.</p>