UNPKG

@code-pushup/eslint-plugin

Version:

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

11 lines (10 loc) • 256 B
import type { ESLint } from 'eslint'; export type LinterOutput = { results: ESLint.LintResult[]; ruleOptionsPerFile: RuleOptionsPerFile; }; export type RuleOptionsPerFile = { [filePath: string]: { [ruleId: string]: unknown[]; }; };