---
title: "import-shadowing"
description: "Detect declarations shadowing imports."
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.

# import-shadowing

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

**Default severity:** `warning`

Detect declarations shadowing imports.

## Bad

```go
json := loadConfig() // shadows the json import
```

## Good

```go
encoded := json.Marshal(value)
```

Source: https://strider.gempir.com/lints/import-shadowing/index.mdx
