1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-11 06:20:06 +00:00
Files
lint/src/types/Diagnostic.ts
2021-03-22 20:36:19 +00:00

9 lines
194 B
TypeScript

/**
* A diagnostic is produced by the execution of a lint rule against a file or line of text.
*/
export interface Diagnostic {
lineNumber: number
columnNumber: number
warning: string
}