In the case of this tool, it seem that "code quality" means "formatted the way this tool's author believes is correct." I disagree with this definition.<p>When I think of code quality, I consider things like:<p><pre><code> - consistent memory management practices
- consistent use of accessor methods vs. direct ivar access
- descriptive method, function, and variable names
- commentary to describe caveats and tricky functionality
</code></pre>
Those first two (as well as formatting concerns) can be handled by tools while the next two are very "human" and subjective.