- Require const declarations for variables that are never reassigned after declared
This rule is aimed at flagging variables that are declared using let keyword, but never reassigned after the initial assignment.
Ignores variables that are read between the declaration and the first assignment.
You can check them out here.