Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 327 Bytes

no-shadowed-variable.md

File metadata and controls

13 lines (7 loc) · 327 Bytes

Pattern: Shadowed variable

Issue: -

Description

Disallows shadowing variable declarations.

Rationale: Shadowing a variable masks access to it and obscures to what value an identifier actually refers.

Further Reading