Enforcing a coding style - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T05:42:54Zhttp://stackoverflow.com/feeds/question/284259http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/284259/enforcing-a-coding-style13Enforcing a coding stylePaul Tomblin2008-11-12T15:16:57Z2009-09-18T16:00:18Z
<p>Years ago when I was starting a small development project, the other developers and I sat down and agreed on a compromise brace and indentation style. It wasn't anybody's favourite, but it was something that nobody really hated. I wrote a .indentrc configuration file to that style, and had a check-in trigger that would run indent on every file as it was being checked in. That made it so that it didn't matter what style you wrote your code in, it would end up being the group standard before anybody else saw it. This had the advantage of consistency. But I've never seen anybody else do it this way before or since.</p>
<p>So what say the rest of you? Great idea, or abomination?</p>
http://stackoverflow.com/questions/284259/enforcing-a-coding-style/284268#2842683Answer by Elie for Enforcing a coding styleElie2008-11-12T15:19:58Z2008-11-12T15:19:58Z<p>That sounds like a good idea. As long as the style you end up with is not something completely strange, that's a good way to make sure your developers use the style. And it has the added benefit that they don't have to code that way - it will get reformatted for them when they check in their changes. It would be nice to have a tool like that available that you can plug into your CVS (generic term).</p>
http://stackoverflow.com/questions/284259/enforcing-a-coding-style/284270#28427012Answer by Bill the Lizard for Enforcing a coding styleBill the Lizard2008-11-12T15:20:11Z2008-11-12T15:20:11Z<p>I'd say good idea. I'd take it a step further and make everyone use the config file in their IDE so that they were writing in the agreed upon style by default. If they're going to have to look at everyone else's code in the neutral style, they might as well get used to it. Even their own code should be in the neutral style after one check-in check-out cycle, so why develop new code in their own personal style?</p>
http://stackoverflow.com/questions/284259/enforcing-a-coding-style/284289#2842893Answer by Eli Courtwright for Enforcing a coding styleEli Courtwright2008-11-12T15:26:48Z2008-11-12T15:26:48Z<p>If you limited it to enforcing style on braces and indentation, then I think it's a good idea. However, if you were to try to enforce every single formatting standard, then it probably wouldn't be. In my opinion, there are times when it makes sense to break the standard. For example, I prefer</p>
<pre><code>int x = y * z;
</code></pre>
<p>to</p>
<pre><code>int x = y*z;
</code></pre>
<p>because it's easier to read. However, I vastly prefer</p>
<pre><code>int a = b*c + d*e;
</code></pre>
<p>to</p>
<pre><code>int a = b * c + d * e;
</code></pre>
<p>because the spacing represents the order of operations.</p>
<p>So your policy of enforcing indentation and braces sounds really good. But if someone ever tried to blindly enforce other spacing rules, I don't think it would work well.</p>
http://stackoverflow.com/questions/284259/enforcing-a-coding-style/284296#2842962Answer by Daniel M for Enforcing a coding styleDaniel M2008-11-12T15:28:22Z2008-11-12T15:28:22Z<p>We use TFS with a check in policy that runs a set of Stylecop rules. If your code doesn't pass, you can't check it in. Works very well indeed. Aside from a consistant style and good commenting throughout, it also seems to have increased the general quality of the code - perhaps because the developer is forced to describe what every method, event, etc does they are forced to think about the code more before check in.</p>
<p>Only an MS solution, but worthwhile if it's available to you.</p>
http://stackoverflow.com/questions/284259/enforcing-a-coding-style/284322#2843228Answer by Adam Bellaire for Enforcing a coding styleAdam Bellaire2008-11-12T15:36:18Z2009-09-18T16:00:18Z<p>Adopting a neutral coding style is definitely a good idea. However, only enforcing the coding style when the source is checked in may or may not be a good idea (see also <a href="http://stackoverflow.com/questions/284259/enforcing-a-coding-style/284270#284270">Bill's</a> and <a href="http://stackoverflow.com/questions/284259/enforcing-a-coding-style/284268#284268">Elie'</a>s answers below).</p>
<p><strong>Using the check-in hook:</strong></p>
<p><strong>Pro:</strong> Allows coders to write however they wish, so they don't have to think about the standard or change the way they write code. This minimizes resistance to the policy, and won't negatively impact their productivity when writing code.</p>
<p><strong>Con:</strong> Your coders may have only a passing familiarity with the neutral style, so you aren't getting the full benefit of everyone using "the same" style. If your programmers ever have to work together in a pair programming setup, they are still going to be subjected to one another's programming style on the screen, which is going to be different from their own style or the neutral style.</p>
<p><strong>Going one step further, using the neutral style during development:</strong></p>
<p><strong>Pro:</strong> Encourages fluency in the neutral style, everyone can always read everyone else's code before and after it's checked in. </p>
<p><strong>Con:</strong> You'll encounter more resistance from your developers doing it this way. Depending on your culture, it could be more trouble than it is worth. </p>
http://stackoverflow.com/questions/284259/enforcing-a-coding-style/376100#3761001Answer by Mr. Shiny and New for Enforcing a coding styleMr. Shiny and New2008-12-17T21:32:06Z2008-12-17T21:32:06Z<p>The biggest problem with using automatic code formatters is when the code formatter can't handle every scenario.</p>
<p>For example, if you have lots of SQL in your code, you probably format the SQL automatically. But if your SQL is longer than one line (how long is a line, anyway?) then
you have to format it. So far I've yet to see a good formatter than can deal with this properly.</p>
<p>Example:</p>
<pre><code>String sql = "SELECT * FROM USERS WHERE ID = ? AND NAME = ? AND IS_DELETED = 'N'";
</code></pre>
<p>vs</p>
<pre><code>String sql =
"SELECT * " +
"FROM USERS " +
"WHERE ID = ? " +
" AND NAME = ? " +
" AND IS_DELETED = 'N'";
</code></pre>
<p>The second format is more readable when you have really long queries. Most formatters would de-format that into one long line up to the line length.</p>
<p>However if all you're doing is turning</p>
<pre><code>if(x=1) print("blah"); else print("eep!");
</code></pre>
<p>into</p>
<pre><code>if (x = 1) {
print("blah");
} else {
print("eep!");
}
</code></pre>
<p>then the formatter is ok. We do something similar at work; it isn't enforced by the CVS tool but rather by the IDE. Works reasonably well.</p>
http://stackoverflow.com/questions/284259/enforcing-a-coding-style/1248401#12484010Answer by Thorbjørn Ravn Andersen for Enforcing a coding styleThorbjørn Ravn Andersen2009-08-08T09:10:07Z2009-08-08T09:10:07Z<p>I believe you have decided on your development environment by now. If you use Eclipse you can enable the Format Source save action on the Java editor, which reformats at every save. The major benefit from this is that source chances are marked in your source repository at the time when they were done, not when the source was reformatted later.</p>
<p>Make it an automatic step. You will appreciate it later.</p>