---
title: "no-negative-parallelism"
description: "Flags repeated negative parallelism"
sidebar:
  label: "no-negative-parallelism"
  badge: "Hard"
search:
  tags: [rule, static, detection]
---

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

## Why

Use a direct statement instead of a chain of negative fragments.

## Examples

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

    No delay. No explanation. No remedy.
  </Column>
  <Column>
    **Better**

    The record shows no delay, explanation, or remedy.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-negative-parallelism draft.md
```

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