mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-18 09:23:28 +00:00
22 lines
512 B
YAML
22 lines
512 B
YAML
id: no-effect-die-string
|
|
language: TypeScript
|
|
message: die with `new Error(...)`.
|
|
severity: error
|
|
rule:
|
|
any:
|
|
- all:
|
|
- pattern: Effect.die($MESSAGE)
|
|
- has:
|
|
field: arguments
|
|
all:
|
|
- kind: arguments
|
|
- has:
|
|
kind: string
|
|
- all:
|
|
- pattern: Effect.die($MESSAGE)
|
|
- has:
|
|
field: arguments
|
|
all:
|
|
- kind: arguments
|
|
- has:
|
|
kind: template_string
|