Go

Go

Made by DeepSource

Found variable declaration and assignment separately SCC-S1021

Anti-pattern
Major
Autofix

Variable declaration and assignment can be merged, simplifying the code.

Bad practice

var x int
x = 1

Recommended

var x int = 1

or

x := 1