| 5 | export type Formatter = (report: FormattableReport, options: FormatOptions) => string; |
| 6 | |
| 7 | export interface FormattableProblem { |
| 8 | level: RuleConfigSeverity; |
| 9 | name: keyof QualifiedRules; |
| 10 | message: string; |
| 11 | } |
| 12 | |
| 13 | export interface FormattableResult { |
| 14 | errors?: FormattableProblem[]; |
nothing calls this directly
no outgoing calls
no test coverage detected