vote up 2 vote down star
2

I dont think one list will satisfy everyone. So the "favorite" part :)

I was about to ask for Embedded programming and C at first. But you can post your favorite in other languages / areas as well.

flag

18 Answers

vote up 0 vote down

Maybe this is a contentious issue, but in my experience, the best/favourite coding standard is the one that all of your developers agree on. You'll likely get religious wars over "mine is better than yours" if you go for any particular developers' standard, an independent standard (such as the ones already suggested in other answers) that gets the most votes from your development team is best.

You can always tweak the chosen standard if it doesn't quite fit.

link|flag
vote up 0 vote down

Use a simple process for determining your checklist and change your checklist over time!

Article: How to build a checklist.

link|flag
vote up 0 vote down

The first guideline should be that the list of guidelines should be short enough that you can summarize the list on a single sheet of paper or a single screen in a web browser. If you need to document the reasoning behind guideline, write a reference document for that stuff. Or better yet, make the table of contents enough of a summary that you can just use that as the short list.

I just checked out the Geosoft standards and they aren't bad, but the missing feature is the summary list of the numbered points without the associated explanation text. Its too long.

The guideline from A. Reddy at Sun from May 2000 is pretty good, I think, but really the best part is the last page which gives a really nice summary.

One extra guideline that I like that we are using is:

Do not put $Log:$ in the comment block at the top of the file. We are not using CVS and SVN doesn't honor it.

PS: Sorry about the crazy google link, but I couldn't find the pdf as html anywhere and the last page is the best anyway.

link|flag
vote up 0 vote down

For PHP, Zend offers a thorough list of guidelines.

link|flag
vote up 0 vote down

I have been using and modifying the Geosoft standards for a while, these are for C++

link|flag
vote up 4 vote down

For C++ I've found nothing better than C++ Coding Standards by Herb Sutter and Andrei Alexandrescu.

One of the nicest things about this book, is that each standard is about a page in length, which means you can digest the book in very small chunks over time.

link|flag
Yep, on the toilet :) – mmutz Jul 30 at 21:19
vote up 2 vote down

For Python: PEP8

http://www.python.org/dev/peps/pep-0008/

PEP stands for Python Enhancement Proposal.

link|flag
For what it's worth, I use this script to 'validate' my code: svn.browsershots.org/trunk/devtools/… – Mark van Lent Jul 1 at 18:59
vote up 2 vote down

I like the rules by Juwal Lowy:

The IDesign C# Coding Standard

link|flag
vote up 0 vote down

There's the Firmware Standards Manual (http://www.ganssle.com/fsm.htm) written by Jack Ganssle which is geared towards embedded software development and programming in C.

We've used it for our embedded systems project and its worked out without any complaints. It goes over file templates, function headers, variables and portability, ISRs, comments, and general coding conventions.

Jack Ganssle is pretty well known in the embedded software community and has a column on embedded.com. He also is a regular speaker in the Embedded Systems Conference (https://www.cmpevents.com/ESCe08/a.asp?option=G&V=3&id=259682) each year.

link|flag
vote up 0 vote down

My favorite style for embedded development is a variant of style(9), the OpenBSD kernel style. It's pretty lightweight and imho easy on the eyes.

It doesn't say much about coding practices though, which you might or might not want depending on your team.

link|flag
vote up 2 vote down

If you're looking at this a code guidelines to form a coding standard, some good places to look are Code Complete by Steve McConnell and the Framework Design Guidelines by Brad Abrams and Kryzstof Cwalina.

Your standard

  • should be Consistent
  • should encompass all aspects of code construction
  • should be different for different languages (not "one size fits all")
  • should reflect not only industry adopted best practices but also your comapnies interal best practices
  • should be flexible enough to change as technology changes

The end goal is that your standards should be simple enough for the developer to internalize so that it becomes something they don't have to think about while writing code, it just happens naturally. This will not happen overnight, but that's the direction it should take you.

The other thing to keep in mind is that the guidelines can have varying degrees of enforcibility. If you want the standard to cover things like curly brace placement, tab size, etc., you can put that in your standard. At that point, a decision must be made if this is a standard that can not (must not) be broken or one that could be broken but is preferred. This is the famous (or infamous) idea of "picking your battles". Some standards end up being considerably more important than others.

link|flag
vote up 1 vote down

G'day,

Go direct to Steve McConnell's book Code Complete 2! Lots of good stuff, with justifications.

Regarding C++, the points Steve raises in his book, plus sticking to the suggestions from Scott Meyer's book "Effective C++" is an excellent start.

HTH.

cheers, Rob

link|flag
vote up 0 vote down

Google has a very decent process for code reviews, supported by their own tools:

  • author edits changes in workspace & tests
  • author sends email to reviewer
  • reviewer views diff
  • reviewer sends email back
  • possible email discussion
  • when reviewer gives it's OK (lgtm) authors submits changes

I wrote more about it in my blog.

link|flag
vote up 0 vote down

Re: consensus... Yes, everyone has to agree, but usually people will disagree violently on things like brace position, indent style and so on. That is why someone has to make a decision and for it to be fair, using an external existing standard avoids accusations of just choosing your favourite style and enforcing it on everyone else.

Also, by using a widely recognised standard, you improve the chances of the style being portable to other projects or workplaces.

link|flag
vote up 2 vote down

I think the most important consideration when deciding coding standards is a concencus of opinion within (1) your team and (2) your company.

Most style guides I've seen for any given language are very similar in intent, with a few differences in their recommendations. Usually, these differences are fairly arbitrary.

I used to code embedded C and the company I worked for had an official style guide. It was fairly minimal (similar to http://www.psgd.org/paul/docs/cstyle/cstyle.htm), which I found to be best.

link|flag
vote up 2 vote down

Did anyone find this useful for C++ development?

link|flag
There are some things in there that I just can't subscribe to, so I would recommend C++ Coding Standards, as other have done. One example is "Names and Order of Includes", which has it exactly the wrong way around: it starts with the most-specific #include, fair enough, but then suddenly reverses the direction for the rest of the pack to increasing specificity. It also bans using namespace, in direct contradiction to Sutter/Alexandrescu. An archaism is encouraging two-step construction (ctor+init()). And they ban default arguments but don't allow for function overloading to fix it. – mmutz Jul 31 at 5:33
vote up 2 vote down

For C and C++ (the C subset at least) I find myself following the Linux kernel's CodingStyle document. Mozilla's is good too.

link|flag
There is a 'goto' on linux kernel's CodingStyle document chapter 7, do you use it for non-kernel code? – Liran Orevi Sep 15 at 12:47
Liran: I just follow the aesthetic guidelines, mostly. – Bernard Sep 16 at 14:14
vote up 2 vote down

For PHP, I found the PEAR guidelines useful when setting up my developer team. We based ours strongly on those, and I think many other teams have too.

http://pear.php.net/manual/en/standards.php

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.