Drupal Code Style Review
Do review you Drupal code for style:
Install coder and enable enable it
drush dl coder
drush en coder
Then to run code style review on any module, cd into the module
drush dcs
Or on a specific file:
drush dcs {filename}
Or better yet setup install hooks in git
Install dcq in a local location
enable the git press commit hooks
drush dcq
It will now look at any file altered by a commit.
CAUTION: If you make changes to pass code style review, when the commit actually clears, it will not contain you changes because the changes were not added, they will need a separate add and commit.
To skip any review
git commit -m "{message}" --no-verify