Implementing and Enforcing Coding Standards - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:58:26Zhttp://stackoverflow.com/feeds/question/341920http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards6Implementing and Enforcing Coding StandardsSteve Brouillard2008-12-04T20:24:31Z2009-05-24T17:15:34Z
<p>My team (of which I am the newest and most junior member) has increased in size from 3 to 9 developers in just about 1 year. Our primary product has increased in complexity and we are about to undertake a year long port/re-write to Silverlight. In the past there has been no specific style/standard enforced.</p>
<p>I suggested to my boss that now would be a good time to implement such standards. I passed on <a href="http://idesign.net/idesign/DesktopDefault.aspx" rel="nofollow">IDesign's</a> document to him and he likes the idea. He has 2 concerns.</p>
<ol>
<li><p>This is a big document to absorb. My thought here is to develop a slimmed down cheat-sheet for the most common items that we're likely to run into, with the understanding that the IDesign standard is the "Master" and anything not covered in the slimmed down version should be looked up in the "Master" document.</p></li>
<li><p>What is the best way to enforce this. It's not a question of trying to dictate; it's a matter of trying to get folks used to developing to a particular standard. There are at least 2 folks on the team that have been developing to the current non-standard for several years now. In order to address this concern, I'd like to see if there's a tool that can be configured to enforce these standards, or at a minimum warn of "violations" of the standard at either compile-time or design-time. I found Microsoft'd StyleCop, but from what I've been able to determine, it isn't configurable and is set up to follow Microsoft's standard, which doesn't completely mesh with IDesign's. </p></li>
</ol>
<p>Any input on tools or the approach I'm looking at would be appreciated.</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/341929#3419291Answer by Ilya Ryzhenkov for Implementing and Enforcing Coding StandardsIlya Ryzhenkov2008-12-04T20:26:40Z2008-12-04T20:26:40Z<p>Try ReSharper, it can format your code to your style. Even reformat the whole solution at once.</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/341932#3419324Answer by Joe90 for Implementing and Enforcing Coding StandardsJoe902008-12-04T20:27:13Z2008-12-04T20:34:12Z<p>Regular code reviews would be a good way to go...</p>
<p>I've found developers respond better to face-to-face discussions about a particular standard rather than leaving it solely to a tool.</p>
<p>Using a tool together with code reviews should be good.</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/341940#3419403Answer by John Kraft for Implementing and Enforcing Coding StandardsJohn Kraft2008-12-04T20:29:00Z2008-12-04T20:29:00Z<p>StyleCop would be a big help.</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/341954#3419540Answer by Rob Hruska for Implementing and Enforcing Coding StandardsRob Hruska2008-12-04T20:32:26Z2008-12-04T20:32:26Z<p>If your team has a continuous build (e.g. using <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a>), you can enforce style constraints by failing the build or making it unstable when someone commits changes that violate the style guidelines. Hudson has a <a href="http://hudson.gotdns.com/wiki/display/HUDSON/Violations" rel="nofollow">Violations</a> plugin that can be used with tools such as Checkstyle and StyleCop.</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/341985#3419851Answer by Steve Brouillard for Implementing and Enforcing Coding StandardsSteve Brouillard2008-12-04T20:40:04Z2008-12-04T20:56:48Z<p>Thank you all for your advice. I'd love to hear more. As it happens, when I was looking into Resharper as recommended by <a href="http://stackoverflow.com/users/18575/ilya-ryzhenkov">Ilya Ryzhenkov</a> I happened to re-download the IDesign standard, which comes in a zip file with a link to this <a href="http://joel.fjorden.se/static.php?page=CodeStyleEnforcer" rel="nofollow">blog entry</a>. The good part is it defaults to the standard I want to use. It's inexpensive (read free if you don't donate) and Ihappend to be a big fan of <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/Coding_Assistance/" rel="nofollow">Code-Rush! and Refactor</a>, so I already have the DXCore loaded!</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/341992#3419920Answer by toddk for Implementing and Enforcing Coding Standardstoddk2008-12-04T20:42:03Z2008-12-04T20:42:03Z<p>Without knowing what your configuration management setup looks like, I would say you should first look for tools that integrate with your version control system that evaluate code before the code is committed to the repository. I have done this with our SVN setup and have seen it done with CVS as well...it's effective to a certain degree because it forces the developer to submit "correct" code and keeps your repository tidy. A simple example of this would be rejecting a commit if the user did not supply specific information in the commit message (i.e., bug #, project task, etc). </p>
<p>Tools aside you will have to find a way to portray the value of a coding standard to the developers. Sounds simple but it has been the toughest part for me to do so far. Show the developers that a little bit of effort can go a long way when it comes to maintaining a code base. </p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/342084#3420847Answer by m0rb for Implementing and Enforcing Coding Standardsm0rb2008-12-04T21:11:22Z2008-12-04T21:11:22Z<p>A combination of ReSharper, FxCop/StyleCop (there is a way to define custom rules at least for FxCop), clear code guidelines and monthly reviews should do the job for a team of nine people I think. If someone breaks the rules, you'll have no way but to use a whip :)</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/343714#3437143Answer by Stuart Harris for Implementing and Enforcing Coding StandardsStuart Harris2008-12-05T12:46:13Z2008-12-05T12:46:13Z<p>Its difficult to overstate the importance of coding standards. The key is that you should have a consistent code base that everyone can read and understand quickly. Its less important which set of standards you choose (so long as everyone signs up) - but if you choose a standard that's widely used then fewer developers will have to adjust their style. The <a href="http://msdn.microsoft.com/en-us/library/czefa0ke.aspx" rel="nofollow">Microsoft Design Guidelines for Class Library Developers</a> are my favorite (and very <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> friendly).</p>
<p>A colleague of mine (<a href="http://blogs.conchango.com/howardvanrooijen/default.aspx" rel="nofollow">Howard van Rooijen</a>) and his open-source team are developing the excellent <a href="http://www.codeplex.com/StyleCopForReSharper" rel="nofollow">StyleCop for ReSharper</a> which shows you style violations in real-time by highlighting them as you type! There has been a <a href="http://blogs.conchango.com/howardvanrooijen/archive/2008/11/15/stylecop-for-resharper-v0-0-14197-released.aspx" rel="nofollow">recent release</a> which is heartily recommended.</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/571493#5714931Answer by Bealer for Implementing and Enforcing Coding StandardsBealer2009-02-20T22:29:16Z2009-02-20T22:29:16Z<p>I've just written a blog on using ReSharper and StyleCop together, and enforcing it via Continuous Integration (using NAnt). </p>
<p><a href="http://www.robertbeal.com/archives/47" rel="nofollow">http://www.robertbeal.com/archives/47</a></p>
<p>See what you think of it. It works very well for us. A few grumbles as at current I fail the build if a single code violation is introduced. We do have tens of thousands of violations though (mostly in old legacy code) so my response is to go cleanup one of them, and that are code should be getting better not worse.</p>
<p>I got sent this in response once, Hitler's Nightly Build Fails:
<a href="http://www.youtube.com/watch?v=Azl4nqLn4-Y" rel="nofollow">http://www.youtube.com/watch?v=Azl4nqLn4-Y</a></p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/606505#6065050Answer by Patrick Peters for Implementing and Enforcing Coding StandardsPatrick Peters2009-03-03T14:11:27Z2009-03-03T14:11:27Z<p>In our company we use reference cards for C#. Reference cards are made in Powerpoint using 2 slides. A frontslide and backslide (2 page printing). Each slide has 3 columns (newspaper setup). Between each column 1 cm of white is made to achieve folds.</p>
<p>Place the most important aspects of the full coding guideline of the company in the 2 slides (for example we have: coding style, namespaces & solution structure, naming conventions).</p>
<p>You chose IDesign's out of the box coding guidelines. Maybe it is easier for you to adept the MS coding style, but that's your choice. Most developers are familiar with the MS guidelines and therefore easier to adept.</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/904107#9041072Answer by tomjen for Implementing and Enforcing Coding Standardstomjen2009-05-24T16:25:23Z2009-05-24T16:25:23Z<p>Find something that is <em>way</em> shorter than that. Developers have <em>so</em> much to remember that it is a waste of time to expect them to memorize more than a page of rules. Even if you give them a cheat sheet, unless that is the official and <em>only</em> document you just end up with developers that invent their own style for the rest.</p>
<p>Better to have a simple convention that is followed than a big complicated document that isn't followed.</p>
<p>As an aside, have you ensured proper by in from the team?</p>
<p>Al most all the code standards I have seen have mandated silly stuff like all if statements must contain braces, which ruins stuff like</p>
<pre><code>public bool compare (Object other){
if(other == null) throw new NullPointerException("You twit, don't give me a null pointer");
if(!(other instanceof CustomerObject)) throw new UnsupportedArgumentException("Give me the right argument, dammit");
...
</code></pre>
<p>Because such stuff now takes up three lines, and therefore don't get written (or if it does, prevent the programmer from figuring out what the method is doing).</p>
http://stackoverflow.com/questions/341920/implementing-and-enforcing-coding-standards/904220#9042201Answer by leander for Implementing and Enforcing Coding Standardsleander2009-05-24T17:15:34Z2009-05-24T17:15:34Z<p>Notes from my experience getting buy-in on coding standards at my current company (small sized developer of multiple projects, each with 1-6 programmers apiece; we're primarily C++ but I imagine the answers will still apply):</p>
<p>A code review <strong>cheat sheet</strong> is a great idea. Tailor it toward your organization (e.g. what is easy to overlook or get wrong), and update it as you go (once a month, come back and remove stuff that's enforced in other ways). If you have a wiki, include links to "why" for each point, if you can!</p>
<p><strong>Split your reviews</strong>. Some commits beg formal reviews, some don't. We use a few types:</p>
<ul>
<li><em>Mini-Design-Doc reviews</em> wherein a short (usually one or two pages on a wiki) are commented on by the group before implementation starts. Great for spotting "reinventing the wheel" early.</li>
<li>Guided <em>warm reviews</em> where one or more peers sits with the original author before commit (great for spreading expertise, bringing coops/interns up to speed). The original author tends to spot more problems than the reviewers in these. =)</li>
<li>Formal post-commit <em>cold reviews</em> where someone with no guidance (other than the checkin comment and any documentation) reviews the code. This tends to reveal logic or error-handling problems, as well as boundary bugs.</li>
</ul>
<p><strong>Automate</strong>, and <strong>push, don't pull</strong> useful info. We mail out reports from our buildserver -- it usually builds once per commit (depending on how busy it is). These reports can include e.g. the differences between a current Gimpel PC-Lint run and the last. This addresses the "too much info" concern: you get just the warnings/errors <em>you</em> are possibly responsible for, along with description. When the info is narrowed down and easy to understand, people use it as a learning tool.</p>
<p>I can't emphasize this bit enough: <strong>don't sweat the small stuff</strong>. (See point #0 of the marvelous C++ Coding Standards book.)</p>
<ul>
<li>Split your coding standard into two or more sections, a "required" and "recommended" section -- allow people to read the recommended section at their leisure, and keep the required section small.</li>
<li>When reviewing, explicitly delineate stuff that is really important to fix right now, and stuff that isn't. For our "warm reviews", for instance: bracket placement and naming inconsistencies are explicitly "fix this later", because we don't want to invalidate any testing people have done before the pre-commit review. Logic bugs are "fix now, before commit". Error-handling inconsistencies or missing cases vary. If you require people to fix even piddling violations immediately, you'll get resentment.</li>
</ul>
<p>Finally, <strong>encourage participation</strong> and <strong>mutate</strong> your coding standard over time. (This is where a wiki can be useful.) If someone has a legit reason for not following a piece of the standard (either they have something better, or it's too much of a PITA to follow), listen and respond. If people actually actively contribute to and understand the standard rather than just being handed it, you'll get a lot better response.</p>