---
title: "time-naming"
description: "Avoid unit suffixes on time.Duration values."
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.

# time-naming

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

**Default severity:** `warning`

Avoid unit suffixes on time.Duration values.

## Bad

```go
var timeoutSeconds time.Duration
```

## Good

```go
var timeout time.Duration
```

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