---
title: "unexported-naming"
description: "Avoid leading underscores in private names."
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.

# unexported-naming

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

**Default severity:** `warning`

Avoid leading underscores in private names.

## Bad

```go
var _clientID string
```

## Good

```go
var clientID string
```

Source: https://strider.gempir.com/lints/unexported-naming/index.mdx
