---
title: "no-contrasting-pairs"
description: "Flags formulaic contrasting pairs"
sidebar:
  label: "no-contrasting-pairs"
  badge: "Hard"
search:
  tags: [rule, static, detection]
---

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

## Why

State the quality or limitation directly instead of balancing paired opposites.

## Examples

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

    The analysis should be clear without becoming simplistic, balanced without becoming vague.
  </Column>
  <Column>
    **Better**

    The analysis should be clear and balanced.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-contrasting-pairs draft.md
```

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