---
title: "no-corrective-negation"
description: "Flags corrective-negation constructions"
sidebar:
  label: "no-corrective-negation"
  badge: "Hard"
search:
  tags: [rule, static, style]
---

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

:::note
This is a style rule. It reports findings and participates in `--fix`, but never moves the [human-likeness score](/docs/concepts/scoring).
:::

## Why

State the substantive point without staging a correction.

## Examples

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

    It's not that the rule is unclear, it's that the record is incomplete.
  </Column>
  <Column>
    **Better**

    The record is incomplete.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-corrective-negation draft.md
```

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