---
title: "prefer-spoken-voice"
description: "Flags prose that works on the page but not in a spoken explanation."
sidebar:
  label: "prefer-spoken-voice"
  badge: "Soft"
search:
  tags: [rule, inferential, style]
---

| Property | Value |
| -------- | ----- |
| Kind | Soft rule |
| Engine | `inferential` |
| Tier | `inferential` |
| 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

Clear legal writing can remain precise while using sentences a reader could say aloud.

## Examples

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

    The foregoing analysis is dispositive with respect to the aforementioned issue in light of the fact that the parties' respective positions are mutually inconsistent.
  </Column>
  <Column>
    **Better**

    That analysis resolves the issue because the parties take conflicting positions.
  </Column>
</Columns>

## Rubric

This rule is evaluated by the optional [AI judge](/docs/guides/judge) against the criteria below.

Flag a paragraph when its meaning depends on clause pile-ups, stacked
abstractions, or formal connective phrases that would be difficult to say
and follow aloud. Consider the whole paragraph, not one technical term.
Do not flag precise legal language merely because it is formal. Do not flag
necessary terms of art, statutory language, citations, or a dense sentence
that remains clear when read aloud.

### Should flag

- The foregoing analysis is dispositive with respect to the aforementioned issue in light of the fact that the parties' respective positions are mutually inconsistent.
- Notwithstanding the foregoing, the implementation of the contemplated remediation methodology remains subject to further consideration by the appropriate authority.
- The determination of whether the provision is applicable necessitates an evaluation of the totality of the circumstances in their aggregate.
- In connection with the issue hereinabove discussed, the undersigned respectfully submits that the requested relief is warranted.

### Should pass

- That analysis resolves the issue because the parties take conflicting positions.
- The agency must decide whether the proposed remedy complies with the statute.
- The court considers the totality of the circumstances.
- The brief asks the court to dismiss the claim under Rule 12(b)(6).

## Turning it off

```sh
lawlint --disable prefer-spoken-voice draft.md
```

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