persona-community-5/.pnpm-store/v3/files/a5/db8706bf139fa248ba49bbf1f0b2b90842eb3cfad127ca44a85c20c9531efeb10da02adc6d15f44097a35e583c1bb1da9f28c5c058401ab74a5a579ead2877
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

21 lines
632 B
Plaintext

import type { NormalizedProblem } from '../walk';
export type Totals = {
errors: number;
warnings: number;
ignored: number;
};
export type OutputFormat = 'codeframe' | 'stylish' | 'json' | 'checkstyle' | 'codeclimate' | 'summary' | 'github-actions' | 'markdown';
export declare function getTotals(problems: (NormalizedProblem & {
ignored?: boolean;
})[]): Totals;
export declare function formatProblems(problems: (NormalizedProblem & {
ignored?: boolean;
})[], opts: {
maxProblems?: number;
cwd?: string;
format?: OutputFormat;
color?: boolean;
totals: Totals;
version: string;
}): void;