---
title: "no-en-dash"
description: "Flags en dashes outside numeric ranges."
sidebar:
  label: "no-en-dash"
  badge: "Hard"
search:
  tags: [rule, static, style]
---

| Property | Value |
| -------- | ----- |
| Kind | Hard rule |
| Engine | `phrase` |
| Tier | `static` |
| Severity | `error` |
| 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

En dashes belong only in numeric ranges such as 2020–2024. Elsewhere they read as stray punctuation.

## Examples

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

    The court–ordered remedy failed.
  </Column>
  <Column>
    **Better**

    The range spans 2020–2024.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-en-dash draft.md
```

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