t-comm
Version: 
专业、稳定、纯粹的工具库
15 lines (14 loc) • 372 B
TypeScript
export type JSErrorFile = Record<string, any>;
export type SCSSErrorFile = Record<string, any>;
export type FileMap = {
    [k: string]: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
        outputFile?: string;
        isStyle?: boolean;
        isVue?: boolean;
        total?: number;
        errorFiles?: JSErrorFile[];
    };
};