---
title: "no-dramatic-fragment"
description: "Flags dramatic fragments and negative-listing constructions."
sidebar:
  label: "no-dramatic-fragment"
  badge: "Hard"
search:
  tags: [rule, static, detection]
---

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

## Why

Use complete sentences and state the conclusion without staged fragments.

## Examples

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

    Not a bug. Not a feature. A policy choice.
  </Column>
  <Column>
    **Better**

    This is a policy choice.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-dramatic-fragment draft.md
```

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