@aaronshaf/ger
Version:
Gerrit CLI and SDK - A modern CLI tool and TypeScript SDK for Gerrit Code Review, built with Effect-TS
13 lines • 365 B
YAML
id: no-as-casting
language: typescript
rule:
any:
- pattern: $EXPR as $TYPE
not:
any:
- pattern: $EXPR as const
- pattern: $EXPR as unknown
- pattern: ($EXPR as unknown) as $TYPE2
- pattern: $EXPR as unknown as $TYPE2
message: Type casting with 'as' is not allowed. Use proper typing or 'as unknown' if necessary.
severity: error