1
0
mirror of https://github.com/sasjs/lint.git synced 2025-12-10 17:34:36 +00:00
Files
lint/src/types/Diagnostic.ts

13 lines
285 B
TypeScript

import { Severity } from './Severity'
/**
* A diagnostic is produced by the execution of a lint rule against a file or line of text.
*/
export interface Diagnostic {
lineNumber: number
startColumnNumber: number
endColumnNumber: number
message: string
severity: Severity
}