mirror of
https://github.com/sasjs/lint.git
synced 2025-12-10 17:34:36 +00:00
10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
/**
|
|
* The types of lint rules available.
|
|
* This might be expanded to include lint rules for entire folders and projects.
|
|
*/
|
|
export enum LintRuleType {
|
|
Line,
|
|
File,
|
|
Path
|
|
}
|