---
title: "no-corporate-register-verbs"
description: "Flags corporate-register verbs"
sidebar:
  label: "no-corporate-register-verbs"
  badge: "Hard"
search:
  tags: [rule, static, style]
---

| Property | Value |
| -------- | ----- |
| Kind | Hard rule |
| Engine | `phrase` |
| Tier | `static` |
| 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

Prefer concrete verbs over corporate language that inflates ordinary actions.

## Examples

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

    The report showcases the team's capabilities.
  </Column>
  <Column>
    **Better**

    The report shows what the team can do.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-corporate-register-verbs draft.md
```

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