---
title: "no-stacked-noun-phrases"
description: "Flags stacked noun phrases before abstract head nouns"
sidebar:
  label: "no-stacked-noun-phrases"
  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

Unpack dense noun stacks so the relationship between ideas is explicit.

## Examples

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

    The agency adopted a long-term claims processing framework.
  </Column>
  <Column>
    **Better**

    The agency adopted a framework for processing claims over the long term.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-stacked-noun-phrases draft.md
```

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