http://www.perlmonks.org?node_id=745081


in reply to Re^2: On Coding Standards and Code Reviews
in thread On Coding Standards and Code Reviews

I think this brings up another good point. Put your rules in order. Anyone reading them will find the first rule that seems to apply and stop reading. If something is most important, put it first. There will always be conflicts (speed of app vs speed of development), and it is important to put them in the order which you want them to supercede each other. This is not supposed to be a mystery novel, building suspense. Even then, there will sometimes still be times where you can't follow the rules - what then? Obviously, a senior developer (or just a prick like me) will ignore rules that don't apply in a specific circumstance (perhaps you have something running during mouse movement - it obviously has to be fast, or the whole system will die, even at the expense of readability of code). Perhaps a guideline on how to determine you're in a special case, but, more importantly, what to do with that special case. Perhaps a comment block to highlight the non-standard code, why, and what it really does in plain English rather than the mess of code it may really be?

(++ for both of you for noticing it and bringing it up :-) )

  • Comment on Re^3: On Coding Standards and Code Reviews

Replies are listed 'Best First'.
Thanktalus
by shmem (Chancellor) on Mar 05, 2009 at 21:32 UTC