UNPKG

@code-pushup/eslint-plugin

Version:

Code PushUp plugin for detecting problems in source code using ESLint.📋

8 lines (7 loc) • 260 B
import type { ESLint } from 'eslint'; export type LintResultsStats = { problemsCount: number; failedFilesCount: number; failedRulesCount: number; }; export declare function aggregateLintResultsStats(results: ESLint.LintResult[]): LintResultsStats;