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