8 lines
267 B
C#
8 lines
267 B
C#
namespace SQLLinter.Common;
|
|
|
|
public interface IReporter : IBaseReporter
|
|
{
|
|
void ReportViolation(IRuleViolation violation);
|
|
|
|
void ReportViolation(string fileName, int line, int column, RuleViolationSeverity severity, string ruleName, string violationText);
|
|
} |