/
Automated Code Review Checks and Parameters

Automated Code Review Checks and Parameters

What is the purpose of the Article?

  • You will understand how automatic code review takes place when creating a merge request

  • You will understand about the parameters that will be monitored

Audience

  • Software Development Engineers

Introduction

The process of automatic code review will help you improve the quality of your code. There are several default checks on the basis of which your code will be analysed and the results will be produced in a report for your use. Using the errors and suggestions pointed out in the report you can improve the code structure, logic and implementation.

Default Checks

  • Argument count (argument-count) - Methods or functions defined with a high number of arguments

    • Default Threshold: 4

  • Complex logic (complex-logic) - Boolean logic that may be hard to understand

    • Default Threshold: 4

  • File length (file-lines) - Excessive lines of code within a single file

    • Default Threshold: 250

  • Identical blocks of code (identical-code) - Duplicate code which is syntactically identical (but may be formatted differently)

  • Method complexity (method-complexity) - Functions or methods that may be hard to understand

  • Method count (method-count)- Classes defined with a high number of functions or methods

    • Default Threshold: 20

  • Method length(method-lines) - Excessive lines of code within a single function or method

    • Default Threshold: 25

  • Nested control flow (nested-control-flow) - Deeply nested control structures like if or case

  • Return statements (return-statements) - Functions or methods with a high number of return statements

    • Default Threshold: 4

  • Similar blocks of code (similar-code) - Duplicate code which is not identical but shares the same structure (e.g. variable names may differ)

What does Default Threshold mean?

Default Threshold means that if upon analysis the outcome is above the threshold an error or suggestion would be generated in the report which you must use to improve upon it.

Analysis based on other rules

When will the code quality report be generated?

The code quality report will be generated when you will create a merge request from the WIP branch to the feature branch. A pipeline will get triggered which will run the code quality job.

How to view the code quality report?

 

Related content