---
title: "var-declaration"
description: "Simplify zero-value declarations."
image: "https://strider.gempir.com/og.png"
---

> Documentation Index
> Fetch the complete documentation index at: https://strider.gempir.com/llms.txt
> Use this file to discover all available pages before exploring further.

# var-declaration

<!-- Code generated by docs/scripts/generate-check-docs.go; DO NOT EDIT. -->

**Default severity:** `note`

Simplify zero-value declarations.

## Bad

```go
count := 0
```

## Good

```go
var count int
```

Source: https://strider.gempir.com/lints/var-declaration/index.mdx
