---
title: "no-empty-emphasis"
description: "Flags overused empty emphasis words"
sidebar:
  label: "no-empty-emphasis"
  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**

    This is very significantly important.
  </Column>
  <Column>
    **Better**

    This raises damages by forty percent.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-empty-emphasis draft.md
```

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