@sasjs/lint
Version:
Linting and formatting for SAS code
6 lines (5 loc) • 355 B
TypeScript
/**
* Analyses and produces a set of diagnostics for the current project.
* @returns {Promise<Map<string, Diagnostic[]>>} Resolves with a map with array of diagnostic objects, each containing a warning, line number and column number, and grouped by file path.
*/
export declare const lintProject: () => Promise<Map<string, import("..").Diagnostic[]>>;