Agile Atlanta User Group   CodingStandards UserPreferences
 
Help Search Diffs Info Edit Print View

XP uses Coding Standards. Code is shared among the team, and therefore shouldn't contain individual's coding conventions. This makes coding egoless and prevents unnecessary work reformatting code.

Programmers write all code in accordance with rules emphasizing communication through the code.

-- GregHouston - 26 Apr 2001


If this is a "best practice", then why don't people do it?

How is it any different if done "eXtreme"?

What other practices support this practice?

What other practices are supported by this one?

How do I get started?

That it! This is the end. Back to the start: FuquasXpPresentation


It's much easier to adopt a coding standard that is somewhat of an industry standard. See Java's CodingStandards.

It's much easier to adopt a coding standard when the code is well refactored and self documenting (small methods, descriptive names) and therefore has few comments.

-- AndrewFuqua - 27 Mar 2002


PythonPowered