no-sentinel-return-on-catch
Disallow swallowing a caught error by returning an empty sentinel unless the error is handled or the sentinel is part of the function contract.
Why
An unreported fallback makes operational failure indistinguishable from a legitimate empty result.
Fix
Rethrow, report the error before returning, or model expected absence with an explicit predicate, safe-parse, or result contract.
Examples
function load() { try { return read(); } catch { return null; }}function load() { try { return read(); } catch (error) { logger.warn("load failed", error); return null; }}