UNPKG

auto-cr-cmd

Version:

Fast automated code review CLI powered by SWC-based static analysis

9 lines (8 loc) 326 B
export interface LoadedIgnoreConfig { path?: string; patterns: string[]; baseDir: string; warnings: string[]; } export declare function loadIgnoreConfig(configPath?: string): LoadedIgnoreConfig; export declare function createIgnoreMatcher(patterns: string[], baseDir?: string): (candidate: string) => boolean;