Interface MetricResult

Represents the result of a metric calculation for violation checking

interface MetricResult {
    className: string;
    filePath: string;
    metricName: string;
    metricValue: number;
    threshold: number;
    comparison: MetricComparison;
    isViolation: boolean;
}

Properties

className: string
filePath: string
metricName: string
metricValue: number
threshold: number
comparison: MetricComparison
isViolation: boolean