get-started

View the Project on GitHub Engin-Boot/get-started

Quality Standards

Simplicity

Simple code makes its intent obvious. Decomposition and Naming help a developer to understand without ambiguity.

Low duplication yields a single source of truth, reducing surprises during maintenance.

Low function-complexity helps in testability as well. Towards this, the cyclomatic complexity-limit for a method is 3. This workflow implements such a limit.

KPI

Workflows

These workflows are starting points to gate according to the above list of KPI.

Complexity-limit

C++ starter workflow

C# starter workflow

Java starter workflow

Tips