---
title: "no-nominalization"
description: "Flags weak verbs paired with nominalized nouns"
sidebar:
  label: "no-nominalization"
  badge: "Hard"
search:
  tags: [rule, statistical, style]
---

| Property | Value |
| -------- | ----- |
| Kind | Hard rule |
| Engine | `density` |
| Tier | `statistical` |
| Severity | `warning` |
| 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

Use the plain verb when it makes the sentence shorter and clearer.

## Examples

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

    The court made a determination about the claim.
  </Column>
  <Column>
    **Better**

    The court determined the claim.
  </Column>
</Columns>

## Turning it off

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

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