
February 17th, 2011, 11:26 PM
|
 |
Moderator Emeritus
|
|
Join Date: Feb 2002
Location: Scottsdale, AZ
|
|
Quote: | Originally Posted by diagramatic
1. If you could have a coding standards analysis tool, what areas of your code would you like to check specifically?
|
Adherence to a discrete, defined set of coding standards. The ability to detect that a class has implemented a common Design Pattern, and that it's structure follows a standard implementation that pattern; or, notification that a class implements an Anti-Pattern, with recommendations on alternate approaches.
Quote:
2. Is there a particular language that you wish you could analyse? For example, HTML, Javascript or C++. |
I'd love to see a free/open-source PHP coding standards tool, which functions as a plug-in to Eclipse.
Quote:
3. What appeals to you the most in a coding standards / best practices tool - speed, presentation, features? |
Ease of use, both in defining my organization's coding standards, as well as parsing through developed code to check for adherence to those standards.
Quote:
4. What do you find missing from your day to day coding? |
The ability to auto-generate Unit Tests for all public interfaces. Hand-writing test cases... well, it gets kinda repetitive.
|