All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Variable declaration and assignment can be merged, simplifying the code.
var x int x = 1
var x int = 1
or
x := 1