---
title: "task-comment"
description: "Surface TODO, FIXME, and BUG comments."
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.

# task-comment

**Default severity:** `note`

Reports source comments containing a `TODO`, `FIXME`, or `BUG` marker. Resolve
the task or link it to an owned work item before enforcing this advisory check.

## Bad

```go
// TODO: decide which errors should be retried.
```

## Good

```go
// Retry only errors classified as transient.
```

Source: https://strider.gempir.com/lints/task-comment/index.mdx
