mirror of
https://github.com/sasjs/lint.git
synced 2026-01-11 06:20:06 +00:00
9 lines
194 B
TypeScript
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
|
|
}
|