---
title: "no-colon-reveal"
description: "Flags dramatic colon reveals at sentence starts."
sidebar:
  label: "no-colon-reveal"
  badge: "Hard"
search:
  tags: [rule, static, detection]
---

| Property | Value |
| -------- | ----- |
| Kind | Hard rule |
| Engine | `leading` |
| Tier | `static` |
| Severity | `warning` |
| Intent | `detection` |
| Scope | `text` |

## Why

Use colons for lists, labels, and quotes, not staged revelations.

## Examples

<Columns cols={2}>
  <Column>
    **Flagged**

    The best part: it learns from mistakes.
  </Column>
  <Column>
    **Better**

    It learns from mistakes.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-colon-reveal draft.md
```

Or durably, in `.lawlint/config.json` — see [Configuration](/docs/reference/configuration).
