How do you document your coding standards? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T06:11:22Zhttp://stackoverflow.com/feeds/question/178664http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards7How do you document your coding standards?Flory2008-10-07T14:20:45Z2009-10-30T21:49:06Z
<p>What have you found to be the best way to publish your coding standards and why?</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178673#1786733Answer by Thomas Owens for How do you document your coding standards?Thomas Owens2008-10-07T14:23:48Z2008-10-07T14:23:48Z<p>If you mean Style Guidelines - a Word document or PDF. IMO, this is something that is "set in stone", but on a per-project basis (if you see something that doesn't work, fix it for the next project, especially if it's late in the project and you have a ton of code that follows the existing style).</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178680#1786800Answer by Ryan for How do you document your coding standards?Ryan2008-10-07T14:25:12Z2008-10-07T14:25:12Z<p>Our project is mostly in python, so we basically took the <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">Python Coding Guidelines</a>, changed something here and there that we didn't like, and stuck them up on our <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> wiki. It's linked right on the front page so that devs know where to find it. So far it has actually done a pretty decent job of being followed!</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178686#1786860Answer by Ilya Komakhin for How do you document your coding standards?Ilya Komakhin2008-10-07T14:26:10Z2008-10-07T14:26:10Z<p>Code guidelines is a company-wide document describing practices. And it is available and must be quite strictly followed.</p>
<p>Code formatting standard is subject to decide between a team (or project) members. For our project, it is kept in SVN as a set of settings for <a href="http://jetbrains.com/resharper" rel="nofollow">Resharper</a> plugin.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178689#1786895Answer by Scott Saad for How do you document your coding standards?Scott Saad2008-10-07T14:26:36Z2008-10-07T14:26:36Z<p>We use our <strong>code to document the standard</strong>. This along side with enforcement from the senior/lead engineers has worked great for us. The reason we don't maintain an actual document is because we've found that nobody reads it and it becomes outdated rather fast. </p>
<p>IMHO all it takes to prove the point is existing code that shows what the style/standard.</p>
<p>Travel light!</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178690#1786900Answer by harriyott for How do you document your coding standards?harriyott2008-10-07T14:26:39Z2008-10-07T14:26:39Z<p>For the initial process, a wiki prepared with sub-headings is useful to gather opinions from various developers. Once feedback has been gathered, it can then be tidied up and "published".</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178692#1786920Answer by Andre Bossard for How do you document your coding standards?Andre Bossard2008-10-07T14:26:52Z2008-10-07T14:26:52Z<p>I document the code standard by:</p>
<ul>
<li>structure from the most important general style (like indentation, line wrapping, braces, ... )</li>
<li>to the less visible details (space before/after <code>(</code> or <code>)</code> )</li>
<li>code examples</li>
<li>setting descriptions to configure the eclipse code formatter</li>
<li>prosa</li>
</ul>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178693#1786931Answer by Stewart Johnson for How do you document your coding standards?Stewart Johnson2008-10-07T14:26:52Z2008-10-07T14:26:52Z<p>Whenver I've been responsible for setting a coding standard I try and find a good one on the internet that suits our needs and use that. I'll take whatever format it comes in, usually PDF or Word.</p>
<p>There's no point re-inventing the wheel -- I may as well leverage the hard work someone else has done.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178698#1786980Answer by Paul Tomblin for How do you document your coding standards?Paul Tomblin2008-10-07T14:28:22Z2008-10-07T14:28:22Z<p>When I managed a small team, our "coding standards" was a wrapper script on CVS that ran indent (with a team-wide rc file) on your code as you checked it in.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178701#1787010Answer by itsmatt for How do you document your coding standards?itsmatt2008-10-07T14:28:48Z2008-10-07T14:28:48Z<p>An in-house website with SVN used to managing the changes works. The 'latest' is always available to the team online.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178717#1787173Answer by JeeBee for How do you document your coding standards?JeeBee2008-10-07T14:30:56Z2008-10-07T14:30:56Z<p>We put it on the wiki, with links to code snippets where this is helpful.</p>
<p>We then set up a code formatter in Eclipse to match as close as possible to this coding standard, although that cannot help with best-practice coding methodologies.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178721#1787211Answer by Julien Grenier for How do you document your coding standards?Julien Grenier2008-10-07T14:31:26Z2008-10-07T14:31:26Z<p>I think the best way is to use Checkstyle to enforce your coding standard and assure that the build fail if some code something against the checkstyle rules.</p>
<p>Then use code review and pair programming so that juniors can learn from the seniors</p>
<p>You could also setup a wiki page.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178732#1787322Answer by Arne Burmeister for How do you document your coding standards?Arne Burmeister2008-10-07T14:33:13Z2008-10-07T14:33:13Z<p>The only effective way to publish a coding standard in my opinion is to integrate it in the ide used by the developers (eclipse or idea for example). So new code will follow the standards out of the box and old code may be reformatted using the ide.</p>
<p>Only few developer will read coding standards, fewer of them will use them afterwards...</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178747#1787474Answer by Peter for How do you document your coding standards?Peter2008-10-07T14:36:20Z2008-10-07T15:21:21Z<p>If you are developing in .NET. I would recommend using StyleCop to check your builds. I would also recommend using ReSharper and the StyleCop plugin.</p>
<p>With ReSharper and the StyleCop plugin you get red "squiggly" lines under code that is against the standard and a simple mouse over will explain why. No code reviews, no docs to maintian.</p>
<p>Using StyleCop in your build process will ensure that all code checked-in conforms to the standards.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/178903#1789030Answer by Ilya Kochetov for How do you document your coding standards?Ilya Kochetov2008-10-07T15:07:17Z2008-10-07T15:07:17Z<p>We moved from Word documents which proved to be cumbersome and prone to become obsolete to </p>
<ul>
<li>Wiki pages with the standards and examples</li>
<li>Automatic coding standard validation tools running during CI process</li>
</ul>
<p><strong>N.B.</strong> Also we have a client who does not use run anything aside from the build itself in CI cycle. They keep their rules in the ReSharper and are quite pleased with the results</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/179138#1791380Answer by Johnny Wey for How do you document your coding standards?Johnny Wey2008-10-07T15:48:06Z2008-10-07T15:48:06Z<p>If you are using Eclipse, you can use formatters (Preferences->Java->Code Style->Formatters) to automatically format code when the source file is saved. We simply have our company's formatter available on our wiki and everyone imports it into Eclipse.</p>
<p>The cool thing about formatters is that you can decide which one you want to use so you can have different projects with different formats. However, we typically only use one format so our code is uniform across all projects.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/179290#1792900Answer by Vivek Kodira for How do you document your coding standards?Vivek Kodira2008-10-07T16:24:54Z2008-10-07T16:24:54Z<p>We use the following:</p>
<ol>
<li>Tools/plugins in the editor (checkstyle, pmd, in-house tools)</li>
<li>Build time checks produce a report.</li>
<li>The wiki is used to document code review comments </li>
<li>From 3, we then refactor the 'toolable' ones into the in-house tool.</li>
</ol>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/179887#1798870Answer by Black for How do you document your coding standards?Black2008-10-07T19:07:40Z2008-10-07T19:07:40Z<p>It depends on the circumstances:</p>
<p>I worked in a small company with only three developers. There, we just
<em>talked it out</em>. This means nothing more than asking your co-developers, if in doubt about the coding style. After a while, someone realized, that the same questions were asked several times and opened a coding-standard page in our wiki.</p>
<p>Today I work in a small research lab. In this particular field, we do not have
formal coding standards. However, as we work in teams and do pair sessions regularly, an
implicit coding standard seems to appear from nowhere.</p>
<p><hr /></p>
<p>From some friends, who develop systems for aircraft guidance, I know that
they agree on coding standards based on</p>
<ul>
<li>security and government restrictions</li>
<li>needs and inputs from the QA department</li>
<li>if there is still any freedom of choice: input from the developers</li>
</ul>
<p>This coding standard is written down and is enforced by QA.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/179937#1799371Answer by John Kraft for How do you document your coding standards?John Kraft2008-10-07T19:22:35Z2008-10-07T19:22:35Z<p>We currently have the coding standard in a Wiki that only the Sr. Developers have rights to edit. However, like many people have already stated, no one reads it after their first few days. We are currently in the process of trying to get our coding standard into StyleCop on the .NET side. The Delphi stuff is a little harder since we don't have a Delphi framework like StyleCop to use.</p>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/194356#1943560Answer by philippe for How do you document your coding standards?philippe 2008-10-11T17:35:16Z2009-10-30T21:49:06Z<p>I do everything to make it easy to apply for everyone:</p>
<ul>
<li>first of all, everyone in the team should agree to apply them </li>
<li>I share setting for used editors (gvim, emacs ...)</li>
<li>I provide empty source file with the boilerplate heading</li>
<li>I sumarize the standard on a single
reference sheet, not showing the
rules but a piece of code properly
formatted as standardized</li>
</ul>
http://stackoverflow.com/questions/178664/how-do-you-document-your-coding-standards/354055#3540550Answer by mliebelt for How do you document your coding standards?mliebelt2008-12-09T20:08:17Z2008-12-09T20:08:17Z<p>We have done the following to document our coding standards:</p>
<ol>
<li>Wrote them down in a plain word file. The base for this styleguide was the Sun Coding Conventions.</li>
<li>Configured Checkstyle and PMD to follow these coding conventions, additionally provided a default workspace for Eclipse that had the right configuration that fits to the defined Checkstyle and PMD configurations.</li>
<li>Added three chapters to our coding conventions that explained what Checkstyle, PMD and Eclipse configuration fullfilled which part of the styleguide, so that each architect could modify the styleguide and the configurations of Checkstyle, PMD and Eclipse.</li>
<li>Developed little plugins so that by installing Checkstyle and PMD together with our plugins, our coding convention defined by Checkstyle and PMD were the default and easy to select.</li>
</ol>
<p>We think that it helps a lot not only to write it down, but to integrate it in the development environment. On the other hand, we do that only for Eclpise, because it is too much to do if you want that for each and every IDE on earth.</p>