no-todo Disallow calls to the canonical todo function A todo call marks unfinished code and traps if execution reaches it. Instead, you SHOULD implement the operation or remove the path that requires it. - Category: suspicious - Level: warning - Fix: none - Scope: module Reported import { todo } from "destack:error"; function process(): void { todo("process"); } Accepted function process(): void {} Prior art - Clippy ยท todo language/linter/src/rules/suspicious/notodo.rs:6