Local Code Quality is typically what static code analysis tools like SonarQube and Detekt offer.

This usually consists of simple metrics such as:

  • Cyclomatic complexity
  • Number of lines of code in a function
  • Number of input parameters in a function
  • Complex boolean logic

These metrics are usually easy to calculate, but give a very limited view on actual complexity in a large scale software system.