mirror of
https://github.com/sasjs/lint.git
synced 2026-01-04 11:20:04 +00:00
9 lines
120 B
TypeScript
9 lines
120 B
TypeScript
/**
|
|
* Severity indicates the seriousness of a given violation.
|
|
*/
|
|
export enum Severity {
|
|
Info,
|
|
Warning,
|
|
Error
|
|
}
|