Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 355 Bytes

no-unused-variable.md

File metadata and controls

11 lines (6 loc) · 355 Bytes

Pattern: Unused variable

Issue: -

Description

Disallows unused imports, variables, functions and private class members. Similar to tsc’s –noUnusedParameters and –noUnusedLocals options, but does not interrupt code compilation.

Further Reading