---
title: "no-doublets"
description: "Flags legal doublets and triplets"
sidebar:
  label: "no-doublets"
  badge: "Hard"
search:
  tags: [rule, static, detection]
---

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

## Why

Avoid patterns that can make otherwise clear prose sound formulaic or overworked.

## Examples

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

    The contract is null and void.
  </Column>
  <Column>
    **Better**

    The contract is void.
  </Column>
</Columns>

## Turning it off

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

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