UNPKG

danger-plugin-lint-report

Version:

This plugin reads checkstyle / lint reports and posts issues and violations as inline comments in pull requests.

19 lines (18 loc) 326 B
interface Violation { file: string; line: number; column: number; /** * Possible severity values: * - info * - warning * - error * - fatal */ severity: string; message: string; category?: string; summary?: string; explanation?: string; issueId?: string; }