---
title: "no-sycophantic-openers"
description: "Flags sycophantic openers"
sidebar:
  label: "no-sycophantic-openers"
  badge: "Hard"
search:
  tags: [rule, static, detection]
---

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

## Why

Start with the substance. Openers that add no information should be cut.

## Examples

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

    Great question. The statute controls.
  </Column>
  <Column>
    **Better**

    The statute controls.
  </Column>
</Columns>

## Turning it off

```sh
lawlint --disable no-sycophantic-openers draft.md
```

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