murashit_codex-panel/scripts/lint/no-app-server-projection-rpcs.grit
2026-06-26 10:44:53 +09:00

11 lines
454 B
Text

language js
or {
`$client.resumeThread($...)` as $stmt,
`$client.threadTurnsList($...)` as $stmt,
`$client.forkThread($...)` as $stmt,
`$client.rollbackThread($...)` as $stmt
} where {
$client <: r"^(?:client|[A-Za-z_$][A-Za-z0-9_$]*Client)$",
register_diagnostic(span=$stmt, message="Keep app-server projection RPCs behind app-server facades; chat application code should consume Panel-owned snapshots or view models.", severity="error")
}