How to make developers follow coding standards? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:29:01Zhttp://stackoverflow.com/feeds/question/797807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards11How to make developers follow coding standards?Josh2009-04-28T13:02:07Z2009-08-09T11:52:15Z
<p>How can I make developers follow coding standards? </p>
<p>In our company:</p>
<ol>
<li>I've given documents and they don't have the patience to read it and follow it.</li>
<li>I've tried telling them again and again "please do it this way" they nod their heads, but still do it the wrong way</li>
<li>We're doing a project for the third time and still they don't seem to follow it properly.</li>
</ol>
<p>I'm now so tired of this. What is the best way to set standards for coding and make sure they follow them?</p>
<h3>Edit:</h3>
<p>There are just about 10 developers in my team. They're over pressurized and do not take the time to put comments and do the code neatly since there's more pressure to complete the product from our management. What would be the solution for this?</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797813#79781310Answer by Nebakanezer for How to make developers follow coding standards?Nebakanezer2009-04-28T13:03:21Z2009-04-28T13:08:59Z<p>You have the standards. You have a process for them to follow. If they do not follow, terminate them and find qualified individuals who can follow standards.</p>
<p>More specifically,</p>
<ol>
<li>At the beginning of the project, review the standards with the team. Communicate that they must be followed.</li>
<li>At the end of the project, review to ensure they were followed. If they were not, work with the individuals responsible for not following. Ask questions regarding why etc.</li>
<li>Give him/her a second chance.</li>
<li>If repeated, terminate the individual.</li>
</ol>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797818#79781823Answer by Winston Smith for How to make developers follow coding standards?Winston Smith2009-04-28T13:03:59Z2009-04-28T13:09:53Z<p>Automate it.</p>
<p>You could integrate <strong>StyleCop</strong> and <strong>FxCop</strong> (Code Analysis in VS2008) into your build process.</p>
<p>Thus, when someone checks something in which breaks the rules, the build will break and they'll have to fix it. If you don't have an automatic build process which supports this, you could always run the tools manually prior to code reviews etc.</p>
<p>You probably won't find a perfect match for your coding standards, but you should be able to get something pretty close.</p>
<p>StyleCop</p>
<p><a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">http://code.msdn.microsoft.com/sourceanalysis</a></p>
<p>FxCop: </p>
<p><a href="http://blogs.msdn.com/fxcop/" rel="nofollow">http://blogs.msdn.com/fxcop/</a></p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797820#7978206Answer by TheSoftwareJedi for How to make developers follow coding standards?TheSoftwareJedi2009-04-28T13:04:10Z2009-04-28T13:15:17Z<p>It sounds like you aren't respected enough.</p>
<p>Do code reviews, and discuss the coding standards with the team. Maybe they don't adhere because they don't agree. Be flexible.</p>
<p>Perhaps if you're doing a project for the third time, it's YOU that's doing things wrong.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797827#7978272Answer by Ruben Steins for How to make developers follow coding standards?Ruben Steins2009-04-28T13:05:50Z2009-04-28T13:11:30Z<p><strong>Technical Solution</strong>
if you're using Team System you could use <a href="http://msdn.microsoft.com/en-us/magazine/cc163320.aspx" rel="nofollow">checkin policies</a> to enforce it. Other versioning systems no doubt support similar things. You'll need the <a href="http://msdn.microsoft.com/en-us/teamsystem/bb980963.aspx#checkin" rel="nofollow">TFS Server Power tools</a> for this.</p>
<p><strong>Non-technical</strong>
Aside from a technical solution you might want to explain the reasons you're requireing these coding standards (quality, legal etc.). They might feel the policy is overly restrictive or simply do not understand the necessity.
If you can convince them of the need to do this, you no longer will have to force them.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797829#79782912Answer by Anton Gogolev for How to make developers follow coding standards?Anton Gogolev2009-04-28T13:06:15Z2009-04-28T13:06:15Z<p>Go get more obedient devs.</p>
<p>On a serious note: I can say for myself that I tend to ignore (or reluctant to follow) practices I find downright unreasonable, too authoritarian or plain stupid. Try speaking to your guys and ask them what they don't like about the doc.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797831#7978311Answer by claco for How to make developers follow coding standards?claco2009-04-28T13:06:32Z2009-04-28T13:06:32Z<p>I agree with Joe. Automate as much of it as possible as part of a continuous integration process. The easier is to comply without losing focus from the task at hand (programming), the more people will comply.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797838#7978380Answer by BenAlabaster for How to make developers follow coding standards?BenAlabaster2009-04-28T13:07:35Z2009-04-28T13:07:35Z<p>Have you tried a wooden ruler across the knuckles? Worked for me in school :P</p>
<p>Seriously though, standards are there to be followed, if they're not being followed and you're in a position to follow through with training and disciplinary action, then follow disciplinary procedures. If you're not, and you can't convince your higher ups that this should be followed then it seems you have two options:</p>
<ul>
<li>Suck it up and make the best of it</li>
<li>Start looking for another job</li>
</ul>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797842#7978420Answer by Gamecat for How to make developers follow coding standards?Gamecat2009-04-28T13:08:28Z2009-04-28T13:08:28Z<p>Use an intelligent code formatter and probably an analysis tool to check if the standards are followed.</p>
<p>Use some sessions to introduce the standards.</p>
<p>Introduce a kind of an award for the programmer with the best compliance for the standard each month.</p>
<p>And if all fails, get rid of them.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797844#7978440Answer by Stefan Steinegger for How to make developers follow coding standards?Stefan Steinegger2009-04-28T13:08:31Z2009-04-28T13:08:31Z<p>In my experience, people do not follow the standards be cause they don't know them or do not care about it. Sometimes, coding standards are poorly communicated, even if they are new and considered to be important.</p>
<p>This kind of problems should be solved by </p>
<ul>
<li><strong>Training</strong></li>
<li><strong>Communication</strong></li>
<li><strong>Reviews</strong></li>
</ul>
<p>If people do not listen, the team leader should care about it and help forcing the guidelines to be taken serious.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797846#7978465Answer by JeeBee for How to make developers follow coding standards?JeeBee2009-04-28T13:08:32Z2009-04-28T13:08:32Z<p>If you have seniority over them, then do a code review and fail them for not adhering to the coding standard. If it continues you can give them a formal warning. If it then continues you can fire them and get people in that can spend 20 minutes reading a coding standards document once in their lives.</p>
<p>I don't know what IDE you use, but Eclipse lets you set up code formatters that you can distribute around your developers, so this might also be an idea.</p>
<p>However there may be an underlying problem - that the other developers dislike your coding standard. It might be best to first find out if this is the case. If your coding standard is actually not a common standard in your language then they might just be passive aggressive as long as they can get away with it. Maybe you should involve them in the development of a coding standard that they are all happy with, mostly.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797847#7978475Answer by Gus for How to make developers follow coding standards?Gus2009-04-28T13:08:58Z2009-04-28T13:34:22Z<p>Are they incompetent, lazy or ignorant?</p>
<p>My experience with this kind of thing is that it starts with leadership, and precedence. Precedence, meaning that people figure out where the line is drawn, and they hang out there. One example I can think of was a new programmer coming on to a job that had been filled by the same guy for 12 years. The code that he had to maintain was a sloppy mess. So he knew he could get away with murder...since the last guy left on his own accord, never getting fired after 12 years of blazing incompetence.</p>
<p>If you've already drawn the line too far out, reign it in. Fire one of em explicitly for not following standards.</p>
<p>It sounds like you've tried to cure the ignorant, leaving you only with the lazy and incompetent...neither of which are worth curing. I'd cull the herd if I were you. If that doesn't work, look for a job outside of management.</p>
<p>EDIT: In response to your "pressurized" addition, the project manager should do their best to absorb as much of that pressure as possible. The best managers know what their team is capable of, and know how to tell management this. You need to be the liaison between team and management, and if management is rushing things along, you should make it clear to them that quality will suffer. If the people with money don't care as much about quality as they do about getting it done...well, you can't be picky about standards. If they want quality, they will listen to a confident manager who tells them that his programmers cannot create a quality, maintainable application without standards enforcement.</p>
<p>If them feeling pressure is what is doing it though, then you need to work on absorbing more of that pressure yourself and not letting it get to your team. That is a big part of being a project manager.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797854#79785422Answer by Tony for How to make developers follow coding standards?Tony2009-04-28T13:10:15Z2009-04-28T13:23:58Z<p>Were the developers consulted when the standards where written? I hate having to follow guidelines that someone came up with out of the blue and did not consult some of the devs. It happens all the time. </p>
<p>The other thing that bugs me is someone giving me guide lines to follow that does not actually work on production code. There is a big difference in the theoretical right way to do something and the piratical right way to do something.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797861#7978610Answer by LittleBoy for How to make developers follow coding standards?LittleBoy2009-04-28T13:11:17Z2009-04-28T13:11:17Z<p>Take a meeting to discuss pros and cons of the points related to implementation of coding standard. Take different opinion from every peer and filter out all suggestion.</p>
<p>Convey the importance of following standards and their benefit to understand them completely.</p>
<p>Make them as a habit. </p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797864#7978641Answer by belgariontheking for How to make developers follow coding standards?belgariontheking2009-04-28T13:12:42Z2009-04-28T13:12:42Z<p>Just get rid of them and find new ones. If they're too lazy to do things right, they don't deserve to be employed. In this economy, you'll have 100 resumes in your hand by morning.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797874#7978740Answer by bryan_cook for How to make developers follow coding standards?bryan_cook2009-04-28T13:13:50Z2009-04-28T13:13:50Z<p>In a civil manner, approach them (the other developers) with a prepared document or thoroughly thought through dialog about the pros of adopting a set of coding standards. Identify the pitfalls with the approach they take currently and provide them with sample scenarios where their current methodology could negatively affect the end product.</p>
<p>If you feel strongly that a set of standards will prove beneficial, go above their heads. In the same manner as before, approach a higher-up with a drafted set of standards that you believe could improve your teams software development. Identify the benefits, provide sample scenarios, and sell your idea.</p>
<p>However, always be mindful that you do not want to alienate your fellow programmers or project yourself to them in a negative light. You do not want to create friction between yourself and the other developers; it will negatively impact the team and the company. The other developers may feel that your trying to push your personal method of programming onto them.</p>
<p>Whatever you may do, I'd recommend you approach the situation delicately. Make sure you think your approach through before implementing ...</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797890#7978902Answer by Garrett for How to make developers follow coding standards?Garrett2009-04-28T13:19:38Z2009-04-28T13:19:38Z<p>I agree w/ Anton. You need their buy-in, else the coding standards are just arbitrary rules meant to inconvenience them (at best) or stifle their creativity (at worst).</p>
<p>I also recommend making the coding standards concise, and, for the most part, tell your devs what they <em>shouldn't</em> do rather than providing an exhaustive list of what they <em>should</em> do. Find stuff that they'd reasonably agree on (like "avoid using empty catch blocks like the plague, as they just mask errors"). Make it known that <em>they</em> are the beneficiaries of the dev standards to achieve buy-in from the majority.</p>
<p>Rushing to fire non-pliable employees isn't the answer. Turn this into a <strong>positive experience</strong> for your devs and everyone wins.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797893#7978931Answer by TygerKrash for How to make developers follow coding standards?TygerKrash2009-04-28T13:20:25Z2009-04-28T13:20:25Z<p>Automation is probably the best answer to the problem, the aforementioned fxcop or team system solutions work well.</p>
<p>There might be another issue at work here, I know when I was a junior dev I was handed a huge coding standards doc and asked to build everything to match that. I remember being overwhelmed with the sheer number of items, I plain couldn't remember to do it all, particularly when trying to get something working to a deadline..</p>
<p>If your standards are verbose it might be worth picking out the items you'd most like to see fixed and focus on those, then phase in the others gradually, it might work better than expecting them to change all their bad habits at once.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797920#7979201Answer by Greg for How to make developers follow coding standards?Greg2009-04-28T13:25:47Z2009-04-28T13:25:47Z<blockquote>
<p>Edit: There are just about 10
developers in my team. They're over
pressurized and do not take the time
to put comments and do the code neatly
since there's more pressure to
complete the product from our
management.What would be the solution
for this?</p>
</blockquote>
<p>In my experience, it takes a very strong individual to "train" upper management on how software development actually works and to stand up to them. It's obvious that you're very frustrated with your situation, but unfortunately it might be impossible to fix. You probably won't get the resources or the cooperation that you need. I've worked in that type of environment and my solution was to find another job.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797927#7979271Answer by Omar Kooheji for How to make developers follow coding standards?Omar Kooheji2009-04-28T13:27:16Z2009-04-28T13:27:16Z<p>Maybe your standards are too restrictive, Coding standards are good but sometimes more is less. Give them a one page summary as to how their code should look, Do code reviews and fail the ones that don't adhere to the standard. I also like the suggestion of automation.</p>
<p>Explain to them why coding standarads are a good thing.</p>
<p>I use Code Style enforcer in Visual studio and eclipse enforces coding standards.</p>
<p><a href="http://joel.fjorden.se/static.php?page=CodeStyleEnforcer" rel="nofollow">http://joel.fjorden.se/static.php?page=CodeStyleEnforcer</a></p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797932#7979320Answer by Chocolim for How to make developers follow coding standards?Chocolim2009-04-28T13:27:51Z2009-04-28T13:27:51Z<p>Talk, talk, talk to them, i think if you know that is a good programmer you cant loose him/she.
Is not easy to chance the way that your write code, is ease to forget the new standard when you are more worry about to write down your idea.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/797955#7979550Answer by Alin Olaru for How to make developers follow coding standards?Alin Olaru2009-04-28T13:32:16Z2009-04-28T13:32:16Z<p>Each developer has his own programming style, based on his experience with various languages or in various working environments. Each person develops his/her own style based on many factors. You cannot MAKE someone follow strict guidelines for coding.</p>
<p>One possible solution, albeit with limited rate of success, would be to <strong>gather them and discuss</strong> the requirements, take <strong>feedback</strong> from them on their own style and try to find a compromise between these. Try submitting this compromise to your superiors or to those that compile the coding standards for your company.</p>
<p>Also, the developers should be told about the importance of coding standardization, without pressuring them into adopting your standard and into reading whole pages about how they should write their code. Communication is the best way to get a problem solved and a solution on the table. Without communication there is only chaos.</p>
<p>As has been suggested, you can also try a code style formatter prior to revision.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/798104#7981041Answer by Ryan Emerle for How to make developers follow coding standards?Ryan Emerle2009-04-28T14:00:06Z2009-04-28T14:00:06Z<p>You ought to instate code reviews where the senior developers review the code of the other developers. If they don't follow convention, they fail the code review and it won't make it into the repository.</p>
<p>This requires a bit of human-engineering in that it is more process-based than software-based.</p>
<p>Oh, and tight deadlines are no excuse for bad code. As programmers it's our job to write solid quality code that is maintainable by the rest of the team.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/798110#7981100Answer by Stephan Eggermont for How to make developers follow coding standards?Stephan Eggermont2009-04-28T14:01:06Z2009-04-28T14:01:06Z<p>When looking at the questions you asked at SO, I'd say you are having an acceptance problem with your developers. You are not seen as someone who should tell senior developers how to do their work. </p>
<p>So focus on what is needed, instead of how. They should be able to understand that it is important to have coding standards. But it should be their standards, not yours. Ask them to make up their mind, make sure they get enough time to talk about them and make decisions and then write down their decisions. Then you can do something when they do not follow the standard.</p>
<p>[edit]
Replace or educate the management. Management doesn't care, so why should they.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/798245#7982451Answer by SergioL for How to make developers follow coding standards?SergioL2009-04-28T14:25:30Z2009-04-28T14:25:30Z<p>It doesn't sound like you are their manager. If not, the first thing you need to do is get management buy-in. Have your development manager integrate the developer's adherence to standards into their employee reviews. You should have enough data points to sell the concept to your boss...the benefits of coding standards are well documented on the web.</p>
<p>Secondly, it's important that the developers themselves have some sort of input into the coding standards. Otherwise, it feels like you're dictating standards out of a vacuum. If the developers have some say into what makes it into the company's coding guidelines, they're more apt to follow it.</p>
<p>Finally, the use of automated tools as mentioned in previous answers will make it code reviews less painful because you can expect, at least, a minimum of compliance.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/798318#7983181Answer by Stefano Borini for How to make developers follow coding standards?Stefano Borini2009-04-28T14:39:36Z2009-04-28T14:39:36Z<p>Coding guidelines are important, but be careful not to:</p>
<ul>
<li>be too pedantic. Easy to follow/easy to remember rules are good. Public (eg: to your customers) interface standards are good. Imposing if an internal variable must be called num_of_elements or number_of_elements or nelem is too much.</li>
<li>stepping from standardization into their creativity. For example, deciding that Singletons are forbidden is too much. Being a programmer is not more different than being an artist. You have to leave some degree of creativity.</li>
</ul>
<p>In addition:</p>
<ul>
<li>Do peer review. When a developer commits some code, another developer must review it and approve it, also in terms of coding standards. If a fault is found, you don't put blame on a single person, which is never good, but you split the chance of the error to happen to be simultaneously on two (willing or unwilling) developers.</li>
<li>If you are a manager, do find the time to perform this review as well, even code with them. A good manager is part of the team, and shares its tasks and its burden. If you are just a "mail, documents and orders" kind of manager, you will not get respect from your team, in particular if made of enthusiasts, as opposed to mindless typing monkeys. Be as you are a more experienced team member, get your hands dirty together with them.</li>
</ul>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/799391#7993910Answer by Austin Salonen for How to make developers follow coding standards?Austin Salonen2009-04-28T19:00:43Z2009-04-28T19:00:43Z<p>While I agree wholeheartedly with automating your standards, I'm really curious as to what your company's standards are and how many people here would do exactly the same thing your developers are doing. </p>
<p>I've worked with people who have typed up full documents of what they considered to be standards and tried to pass them off to their colleagues. Here's where they failed:</p>
<ol>
<li>They created them in a bubble. The team(s) weren't consulted.</li>
<li>They were based on a language we didn't use. </li>
<li>Most rules had a foundation
that most considered a flaw. "If
you have a big method/class" was a
justification for variable prefixes;
why not just have small
methods/classes and not worry about
what you're naming things? </li>
<li>The commenting methodology was based on
their academic rules. Overly
verbose function headers, etc. </li>
<li>They were focused on the wrong things. These were primarily focused on the naming of variables, methods, and classes so they would follow a certain form (certain prefixes) instead of content -- "do they accurately state what they are/do?" is the only question that matters with naming (except in languages where it does...).</li>
<li>They just didn't have the clout for
people to care.</li>
</ol>
<p>Your best bet is to get a weekly code review meeting going where you put <strong><em>your</em></strong> code that follows the standards up on the screen and get your colleagues' critiques. You'll see where your standards fail and you get "good" code in front of them. Seeing good practices in action should influence future decisions.</p>
<p>Just be prepared to be humbled -- the problem could be you.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/800103#8001030Answer by Rob Sanders for How to make developers follow coding standards?Rob Sanders2009-04-28T22:31:45Z2009-04-28T22:31:45Z<p>It's hard to teoubleshoot something like this without more information, but in my experience I've seen people stray from established code standards for a number of reasons. </p>
<p>Here are some common causes:</p>
<ul>
<li>Deadlines keep changing causing <a href="http://martinfowler.com/bliki/TechnicalDebt.html" rel="nofollow">technical debt</a> (shifting goal posts),</li>
<li>'Just get it done' mentality (usually driven by management)</li>
<li>Lack of peer review</li>
<li>Lack of responsibility</li>
<li>Disagreement about the coding standards or standards are too granular/restrictive</li>
<li>Standards not clear enough or not properly understood</li>
</ul>
<p>Your first step should be to try and understand why people aren't following the standards, before you figure out ways to enforce it - if this is the third project obviously something is wrong which isn't going to be easily solved.</p>
<p>At the end of the day you need to be able to justify the cost (time/effort) of enforcing a standard - i.e. if the standard is very granular, it's more expensive then more relaxed standards.</p>
<p>Secondly, if you want people to take them seriously, you need to have some clout within your company to enforce the standard. You may need to make an example of someone who doesn't follow the agreed standard (see below).</p>
<p>Lastly, you really need to seek input from the development team whether you believe they are experienced enough or not. If anything, you really need to be able to justify the coding standard by saying you've given everyone an opportunity to provide feedback and input into it - i.e. it's an agreed standard.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/800114#8001140Answer by dwelch for How to make developers follow coding standards?dwelch2009-04-28T22:35:12Z2009-04-28T22:35:12Z<p>Simply telling them to do it, saying that your way is the right way is guaranteed to fail. Pretty much 100% guarantee that it will fail. I have seen no exceptions. (you can quote as many books and websites and experts on the subject, the outcome is the same)</p>
<p>Depending on the age of the company the momentum of the engineers is what made that company what it is, so if they are following the momentum they are the ones doing it the right way. </p>
<p>If you want to succeed </p>
<p>1) you must have significant buy in, which means the group has to work on the solution and not be dictated to</p>
<p>2) big changes will fail, if the company has been around long enough you have to work on polishing, not starting over. Make small tweaks, one or two tweaks only at first. If you succeed then you can try for another, if you fail then give up...when in rome...</p>
<p>If it is bothering you this much then perhaps you are either in the wrong job or in the right job at the wrong company.</p>
<p>Standards, process, etc are generally as touchy as abortion and religion, the more you push the more they dig in and the less likely you are to make any progress.</p>
<p>Using or quoting fads like tqm, cmm, 5s, iso, six sigma, etc are a recipe for failure. Now being a contractor going from company to company TEACHING those fads, that will make you wealthy, perhaps you should look into that.</p>
<p>There is no I in team if you are doing this without the team then you are going to fail. Getting management buy in but not the teams buy in results in mutiny then failure or layoffs and failure or walkouts and failure, losing your key staff members and failure. You have to join them not fight them, at this point you have to undo the fights you have already had, it will be an up hill battle. </p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/853238#8532380Answer by Bob Cross for How to make developers follow coding standards?Bob Cross2009-05-12T15:02:41Z2009-05-12T15:02:41Z<p>I would start by rephrasing your question: "How can I convince developers that following coding standards will make their lives better?"</p>
<p>There are at least two parts to the answer:</p>
<ol>
<li><p>The burden of proof is on you as the advocate: if you can't make the business case for why adopting the standards will make life better in measurable ways, your coding standards are not worth adopting. This is your major stumbling block: you already have an organization where people are employed to do work so the business clearly already has some success. How does your standard make things better? Your answer should be phrased in terms of dollars or hours of people's lives (which are effectively the same thing in the workplace).</p></li>
<li><p>Simplicity is better. If your standards document is pages long, it will be immediately ignored by a busy developer. In my world, the best document is no more than a page long. For a coding standard, I would be inclined to create a single sheet of example code. Provided that I'd successfully made the business case above, I would then say to the team, "Make your code look like this, please."</p></li>
</ol>
<p>If you make the mistake of involving more senior management in this discussion, point 1 is even more important. They're going to be surprisingly brutal when it comes to understanding exactly how many dollars your coding standards will save the organization. You can win that argument if you think it through carefully: e.g., reducing debugging time cuts hourly cost as people are able to check off lists of bugs quickly. That's cash money saved.</p>
<p>If you make the mistake of threatening the engineers (e.g., the suggestions of termination above), there's a very high probability that you'll eventually be featured on the Daily WTF.</p>
<p>If you manage to succeed at points 1 and 2, the actual support for standards validation are already well understood. Make sure that as much as possible is handled in the IDE (control-shift-F to format properly, etc.), automated checking tools, etc.</p>
<p>The technical methodology is the easy part. The people problems are always the hardest (and the most important).</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/853334#8533341Answer by gnovice for How to make developers follow coding standards?gnovice2009-05-12T15:19:45Z2009-05-12T15:19:45Z<p>You could try offering them badges and reputation points. ;)</p>
<p>Seriously though, maybe some kind of "gold star/frowny face" system would motivate them through competition with one another, and maybe lighten the mood a bit... and I don't actually mean give them gold stars or frowny faces, cause that would be silly. Just some general reward system.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/882106#8821060Answer by robert.berger for How to make developers follow coding standards?robert.berger2009-05-19T11:02:27Z2009-05-19T11:02:27Z<p>By enforcing code reviews based on the coding standards document and reject if the coding standards are not followed and by including a code beautifier (<a href="http://sourceforge.net/projects/gcgreatcode" rel="nofollow">http://sourceforge.net/projects/gcgreatcode</a>) in the standard build process. After a clean compile (no errors, no compiler warnings, no lint warnings,..) call greatcode.</p>
http://stackoverflow.com/questions/797807/how-to-make-developers-follow-coding-standards/1251240#12512400Answer by James Wiseman for How to make developers follow coding standards?James Wiseman2009-08-09T11:52:15Z2009-08-09T11:52:15Z<p>I was charged with the responsibility of rolling out standards within our company.
There are a number of things that have worked and a number of lessons that I have learned. The development community that would be following these standards was about 25 strong.
The first thing to ascertain is the culture and appetite for standards as this will dictate your approach. One of the first things you will need is management buy-in. There may be project managers whose only perspective on standards is to perceive that they contribute to slipped deadlines. Fundamentally you need buy-in from senior technical managers who recognise that code reviews and standards are fundamental tools for tacking "Technical Debt." There are any number of justifications and resources out there describing this, but this is a huge challenge for any organisation with a large legacy code base.</p>
<p>If technical debt is a problem, then your organisation will already have issues with development timescales, testing, burgeoning support backlog, and possible even high staff turnover. These should all be possible to quantify (roughly) should you need to highlight the challenges to senior management.</p>
<p>The next people you need to persuade are the developers themselves. You will have some who are positive and some who are against this. In our company we formed a 'standards' group, and invited a cross-section of developers to sit on this. When the standards documents were introduced, the standards group discussed and agreed them before rolling them out.</p>
<p>We found it important to put across an inclusive and positive message. "WE" will be doing this, not "YOU" must be doing this. Statements like, "The Standards will help us all learn more, and will make our lives easier in the long term" also help. Present the standards as a tool for learning and picking up new skills (which you will, invariably). </p>
<p>Off the back of the standards were formal code reviews. The process for doing this may well have be tailored to your organisation's individual needs, but the most important thing is to put across that a code review isn't a criticism. It’s also important not to tie a personal performance to the number of failed code review they have. A general observation on their general willingness to support the process should suffice.</p>
<p>In our organisation, post-introduction of standards (especially early on) found them to be fairly fluid and subject to change (as we learned more about their relevance and applicability), so we had the issue of communicating changes to the development community. Rather than pinging out a document for developers to peruse at their leisure, we held training days and briefing sessions. These are times that developers are away from their desks, and helps individual feel that they have the opportunity to challenge and question. In these training sessions we also presented new techniques and ideas, again, with the message “This is really useful, it will make OUR lives easier”.</p>
<p>Periodically, we have a standards review session where everyone can feed back on what they feel does and doesn’t work. This all puts across the message that developers aren’t being dictated to, and that long-term we’re just trying to make their lives easier. Certainly a good grasp of standards and best practice (and involvement in them) will look good on anyone’s CV!</p>
<p>Any estimates for timescales should factor in code reviews, and management should recognise that for a short period of time, at least, following the introduction of standards, ‘output’ may fall.</p>
<p>Any resistance you do get will almost certainly be passive, people will refuse to follow the standards or code reviews. This is difficult to deal with (and can sometimes be unpleasant if you are friendly with them). If you have an adequate system for recording code reviews and participation, then you will have some metrics for feeding into performance reviews (though I would only advocate this as a last resort). This is where your management buy-in will be most important.</p>
<p>Finally, there will be those scenarios where, when chips are down, we have to just get our heads down and code like crazy. These often see standards go out the window. The important thing to do here is have standards and reviews so embedded into your process that it just isn’t possible. </p>
<p>I could probably write a whole essay on this, and go into much more detail. I hope the above makes sense as it is quite a brain dump!</p>