no-unassigned-vars
Configuration
rslint.config.ts
Rule Details
This rule reports let and var variables that are read but never assigned a
value. These variables are always undefined, so reading them is usually a
programming mistake.
Examples of incorrect code for this rule:
Examples of correct code for this rule:
Examples of correct TypeScript code for this rule:
Options
This rule has no options.