drupflare/drangler - v0.1.0
    Preparing search index...

    Interface ValidationCheck

    interface ValidationCheck {
        detail: string;
        fix: string | null;
        id: CheckId;
        ok: boolean;
        ran: boolean;
        title: string;
    }
    Index
    detail: string
    fix: string | null

    the exact command that fixes it, or null when there is nothing to run

    ok: boolean
    ran: boolean

    Whether the check could be made at all.

    A check that could not run is reported as ran: false and never as a pass. That distinction is the whole reason this is a record rather than a boolean: "the pack scrubber is not installed" and "the pack carries no secret" are different facts and only one of them is safe to deploy on.

    title: string