---
title: "no-marketing-language"
description: "Flags marketing language, hype, and filler."
sidebar:
  label: "no-marketing-language"
  badge: "Hard"
search:
  tags: [rule, static, detection]
---

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

## Why

Avoid patterns that can make otherwise clear prose sound formulaic or overworked.

## Examples

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

    We leverage a robust platform.
  </Column>
  <Column>
    **Better**

    We rely on a dependable platform.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-marketing-language draft.md
```

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