structure.paragraph-too-long
What it flags
Paragraphs that overrun either a sentence-count or a word-count threshold. A paragraph is a visual reprise unit: long paragraphs dilute the reprise point for readers who interrupt often. Both metrics are checked so that a short-but-dense paragraph (one 80-word sentence) is still caught โ structure.sentence-too-long covers the complementary case.
At a glance
| Category | structure |
| Default severity | warning |
| Default weight | 2 |
| Languages | EN ยท FR (identical detection) |
| Source | src/rules/paragraph_too_long.rs |
Detection
Split on blank lines (Markdown paragraph convention). Count sentences and words per paragraph. Flag paragraphs exceeding either threshold.
Parameters
| Key | Type | dev-doc | public | falc |
|---|---|---|---|---|
max_sentences | int | 7 | 5 | 3 |
max_words | int | 150 | 100 | 60 |
Examples
A paragraph of eight medium sentences under the public profile will fire on max_sentences. A paragraph containing a single 120-word sentence will fire on max_words (and also on structure.sentence-too-long).
Suppression
See also
References
See References for the full bibliography.