TypeScript 禁止不必要的可选链表达式

TSR*_*TSR 5 javascript typescript eslint typescript-eslint

是否有 es lint 规则或 typescript 配置禁止以下操作?

let s: string;
s = 'a';
s?.toLocaleLowerCase();
Run Code Online (Sandbox Code Playgroud)

在我看来, s 不可为空,因此无需进行可选链断言,它只会让其他开发人员感到困惑