---
title: "early-return"
description: "Prefer early returns that reduce nesting."
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.

# early-return

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

**Default severity:** `warning`

Prefer early returns that reduce nesting.

## Bad

```go
if ready { process() } else { return }
```

## Good

```go
if !ready { return }
process()
```

Source: https://strider.gempir.com/lints/early-return/index.mdx
