markuplint
Version:
A Linter for All Markup Languages.
20 lines (19 loc) • 458 B
TypeScript
import { MLFile } from '@markuplint/file-resolver';
export declare function resolveLintTargetFiles(options: {
/**
* Glob pattern
*/
files?: string | string[];
/**
* Target source code of evaluation
*/
sourceCodes?: string | string[];
/**
* File names when `sourceCodes`
*/
names?: string | string[];
/**
* Workspace path when `sourceCodes`
*/
workspace?: string;
}): Promise<MLFile[]>;