using SQLLinter.Common; using SQLLinter.Infrastructure.Diagram; namespace SQLLinter.Infrastructure.Reporters; public interface IReportFormatter { string Format(List violations); string Format(List violations, BpmnDiagram diagram); }