Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 364 Bytes

UnusedPrivateMember.md

File metadata and controls

11 lines (6 loc) · 364 Bytes

Pattern: Unused private member

Issue: -

Description

Reports unused private properties, function parameters and functions. If private properties are unused they should be removed. Otherwise this dead code can lead to confusion and potential bugs.

Further Reading