# configuration/strings/baseline.strings.ts

> 24 lines of code and 5 definitions.

Tree: Build tree
Language: typescript
Layer: product
Canonical: https://banes-lab.com/anatomy/build#file-build-configuration-strings-baseline-strings-ts
Source text: https://banes-lab.com/assets/sources/source.79d4b4ace82cacf7bdf1ebc922a135cf34b2447b897eb70e68760ae89fd9dd01.generated.txt

## Definitions

- `BASELINE_TITLE` (lexical_declaration, line 1, exported)
- `BASELINE_SUMMARY` (lexical_declaration, line 3, exported)
- `BASELINE_INTRO` (lexical_declaration, line 6, exported)
- `BASELINE_HEADERS` (lexical_declaration, line 9, exported)
- `GENERATED_BANNER` (lexical_declaration, line 27, exported)

## Source

```typescript
export const BASELINE_TITLE = "Tone Baseline";

export const BASELINE_SUMMARY =
    "The measured tone metrics per strings module of the application member, regenerated on every gate run: sentence shape, punctuation, vocabulary, person markers and labelled items.";

export const BASELINE_INTRO =
    "The tone analyzer derives every row from the string literals of one strings module. The columns are counts. The words-per-sentence column is the mean over the module's sentences. The longest-sentence column is the largest word count among them. An agentless passive is a sentence whose verb is passive and names no agent. A chained sentence joins more coordinated parts than the writing policy allows.";

export const BASELINE_HEADERS: readonly string[] = [
    "module",
    "literals",
    "sentences",
    "words per sentence",
    "longest sentence",
    "agentless passives",
    "chained sentences",
    "long dashes",
    "semicolons",
    "digit metrics",
    "banned terms",
    "first person",
    "second person",
    "collective person",
    "labelled items",
];

export const GENERATED_BANNER =
    '<!-- govlab.docs: generated by banes-lab.root/banes-lab.content/runtime/entrypoints/tone.entrypoint.ts — do not edit; run "npm run verify". -->';
```
