Interface LintCacheInfo<T>

interface LintCacheInfo<T> {
    $commitId?: string;
    list: {
        [filepath: string]: {
            md5: string;
            updateTime: number;
        } & T;
    };
    success?: boolean;
    version?: string;
}

Type Parameters

  • T = Record<string, unknown>

Properties

$commitId?: string

最近一次执行的 commitId

list: {
    [filepath: string]: {
        md5: string;
        updateTime: number;
    } & T;
}

最近一次 Lint 通过的文件缓存列表

success?: boolean

最近一次执行是否成功

version?: string

最近一次执行时的 flh 版本