(value: unknown)
| 162 | } |
| 163 | |
| 164 | function parseRuleScope(value: unknown): RuleScope | undefined { |
| 165 | return value === "global" || value === "project" ? value : undefined |
| 166 | } |
| 167 | |
| 168 | function parseRuleKind(value: unknown): RuleKind | undefined { |
| 169 | return value === "generic" || value === "mode" ? value : undefined |
no outgoing calls
no test coverage detected