Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 1.79 KB

code-quality.md

File metadata and controls

45 lines (34 loc) · 1.79 KB

Code Quality & Code Coverage

Code Quality

These often include code coverage as well as best practices for common programming languages.

  • SonarQube - self-hosted open source and commercial versions
  • Codacy - my favourite hosted code quality tool
    • good quality UI
    • easy to use
    • configurable
    • supports all the usual languages: Java, Scala, Python, Ruby, PHP, Javascript etc.
  • CodeClimate
  • GoReportCard - widely used for Golang projects only
  • QuantifiedCode - Python only, shut down Aug 2016

Peer Review

Hosted Git providers like GitHub and GitLab already have mature peer review in their Pull Requests / Merge Requests (they're named differently in GitHub and GitLab but they're the same thing).

  • Gerrit - free web based code review tool

Code Coverage