mirror of
https://github.com/sasjs/lint.git
synced 2025-12-10 17:34:36 +00:00
13 lines
285 B
TypeScript
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
|
|
}
|