---
title: "no-hedging"
description: "Flags excessive hedging language"
sidebar:
  label: "no-hedging"
  badge: "Hard"
search:
  tags: [rule, statistical, detection]
---

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

## Why

Use this signal as a prompt to revise rhythm and density, not as a hard prohibition.

## Examples

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

    Perhaps the claim is arguably strong.
  </Column>
  <Column>
    **Better**

    The claim is strong.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-hedging draft.md
```

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