# tools/core/constants/report.constants.ts

> 7 lines of code and 6 definitions.

Tree: Coordination tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/coordination#file-coordination-tools-core-constants-report-constants-ts
Source text: https://banes-lab.com/assets/sources/source.3b4aa83be85514fee888959493faf15a31b3d0e2a7fd622af804e0f09cebd8e1.generated.txt

## Definitions

- `REPORT_SUFFIX` (lexical_declaration, line 3, exported)
- `SKIP_PREFIX` (lexical_declaration, line 5, exported)
- `STEP_DIR` (lexical_declaration, line 7, exported)
- `RULE_DIR` (lexical_declaration, line 9, exported)
- `EMISSION_CALL` (lexical_declaration, line 11, exported)
- `FINDING_EMISSION` (lexical_declaration, line 13, exported)

## Source

```typescript
import { surfacePath } from "../../../config/surface.config.ts";

export const REPORT_SUFFIX = ".report.generated.json";

export const SKIP_PREFIX = "skipped";

export const STEP_DIR = surfacePath("steps");

export const RULE_DIR = surfacePath("rules");

export const EMISSION_CALL = "writeRuleReport(";

export const FINDING_EMISSION = "findings.push({";
```
