---
title: "time-date"
description: "Detect suspicious time.Date arguments."
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-date

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

**Default severity:** `warning`

Detect suspicious time.Date arguments.

## Bad

```go
time.Date(2026, 13, 16, 12, 0, 0, 0, time.UTC)
```

## Good

```go
time.Date(2026, time.July, 16, 12, 0, 0, 0, time.UTC)
```

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