---
title: "excessive-blank-identifiers"
description: "Detect assignments that discard too many results."
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.

# excessive-blank-identifiers

**Default severity:** `warning`

Reports assignments containing three or more blank identifiers. Repeatedly
discarding adjacent results hides a function's contract and can conceal an
important value.

## Bad

```go
value, _, _, _, err := load()
```

## Good

```go
value, metadata, err := load(); _ = metadata
```

Source: https://strider.gempir.com/lints/excessive-blank-identifiers/index.mdx
