UNPKG

@sasjs/lint

Version:

Linting and formatting for SAS code

10 lines (9 loc) 295 B
import { Diagnostic } from './Diagnostic'; /** * Represents the result of a format operation on a file, folder or project. */ export interface FormatResult { updatedFilePaths: string[]; fixedDiagnosticsCount: number; unfixedDiagnostics: Map<string, Diagnostic[]> | Diagnostic[]; }