interface CheckerTemplate {
    fixers?: string[];
    supportsPartial?: boolean;
    template: string;
    templateName: string;
}

Properties

fixers?: string[]

Names of the fixers that can resolve the error raised by this checker.

supportsPartial?: boolean

Flag if checker supports partial structures or not.

template: string

Template to format the checker into a human-readable format.

templateName: string

Name of the checker as it is displayed on the UI.